2015-10-21 03:34:37 +07:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
source ./options.sh $@
|
2015-11-07 02:58:16 +07:00
|
|
|
#cleanupDirInNeeded $WORK_DIR
|
2015-10-21 03:34:37 +07:00
|
|
|
|
|
|
|
echo "Running all scripts for $PLATFORM"
|
|
|
|
#./install_deps $@
|
|
|
|
#./get_tessdata.sh $@
|
2015-10-25 20:22:37 +07:00
|
|
|
#./get_deps.sh $@
|
|
|
|
#./make_deps.sh $@
|
2015-10-21 03:34:37 +07:00
|
|
|
./make_app.sh $@
|
|
|
|
if [ "$PLATFORM" == "linux" ]; then
|
|
|
|
./make_deb.sh $@
|
|
|
|
fi
|
|
|
|
if [ "$PLATFORM" == "mingw" ]; then
|
|
|
|
./make_iss.sh $@
|
|
|
|
fi
|
|
|
|
./make_sf.sh $@
|
|
|
|
echo "All scripts successfully run"
|