git-svn-id: https://192.168.0.254/svn/Componentes.Terceros.jcl@16 c37d764d-f447-7644-a108-883140d013fb
18 lines
508 B
Bash
18 lines
508 B
Bash
#!/bin/sh
|
|
#
|
|
# shell script to build and execute QJediInstaller
|
|
#
|
|
# Robert Rossmair, 2004-06-12
|
|
#
|
|
|
|
eval `grep 'DelphiRoot=' ~/.borland/delphi69rc`
|
|
DCC=$DelphiRoot/bin/dcc\ -E../bin\ -I../source\ -R$DelphiRoot/lib\ -U../source/common
|
|
source "$DelphiRoot/bin/kylixpath"
|
|
cd install
|
|
if [ -f ../devtools/jpp ]; then
|
|
./prototypes.sh
|
|
fi
|
|
$DCC QJediInstaller.dpr # build...
|
|
../bin/QJediInstaller # ...and run installer
|
|
rm *.dcu # clean up source directories
|