2011-01-08 06:38:39 +08:00
|
|
|
#!/bin/sh
|
2011-01-10 06:49:52 +08:00
|
|
|
|
2012-01-19 03:45:21 +08:00
|
|
|
if [ "$WORKSPACE" == "" ]; then
|
|
|
|
echo "ERROR: Missing WORKSPACE environment variable."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2020-07-03 16:27:07 +08:00
|
|
|
VERSION=`cat flightgear/flightgear-version`
|
2013-02-09 18:34:26 +08:00
|
|
|
|
2017-12-26 01:04:47 +08:00
|
|
|
#####################################################################################
|
|
|
|
# ensure fgrcc can run when linked against libSimGearCore, for example
|
|
|
|
export LD_LIBRARY_PATH=$WORKSPACE/dist/lib64:$WORKSPACE/dist/lib:$LD_LIBRARY_PATH
|
|
|
|
|
2012-01-19 03:45:21 +08:00
|
|
|
#####################################################################################
|
2012-01-18 07:32:16 +08:00
|
|
|
# remove old and create fresh build directories
|
2015-03-15 05:43:18 +08:00
|
|
|
cd $WORKSPACE
|
2012-01-18 07:32:16 +08:00
|
|
|
mkdir -p sgBuild
|
|
|
|
mkdir -p fgBuild
|
|
|
|
mkdir -p output
|
|
|
|
rm -rf output/*
|
|
|
|
|
2012-01-19 03:45:21 +08:00
|
|
|
#####################################################################################
|
2012-01-18 07:32:16 +08:00
|
|
|
echo "Starting on SimGear"
|
|
|
|
cd sgBuild
|
2016-05-17 16:57:42 +08:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DENABLE_DNS:BOOL="ON" -DSIMGEAR_SHARED:BOOL="ON" ../simgear
|
2012-01-18 07:32:16 +08:00
|
|
|
|
|
|
|
# compile
|
2011-01-10 06:49:52 +08:00
|
|
|
make
|
|
|
|
|
|
|
|
if [ $? -ne '0' ]; then
|
|
|
|
echo "make simgear failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
make install
|
|
|
|
|
2012-01-18 07:32:16 +08:00
|
|
|
# build source package and copy to output
|
|
|
|
make package_source
|
|
|
|
cp simgear-*.tar.bz2 ../output/.
|
|
|
|
|
2012-01-19 03:45:21 +08:00
|
|
|
#####################################################################################
|
2011-01-10 06:49:52 +08:00
|
|
|
echo "Starting on FlightGear"
|
2012-01-18 07:32:16 +08:00
|
|
|
cd ../fgBuild
|
2019-05-24 20:55:59 +08:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX:PATH=$WORKSPACE/dist -DSIMGEAR_SHARED:BOOL="ON" -DENABLE_SWIFT:BOOL=ON -DFG_BUILD_TYPE=Release ../flightgear
|
2012-01-18 06:43:12 +08:00
|
|
|
|
2012-01-18 07:32:16 +08:00
|
|
|
# compile
|
2011-01-10 06:49:52 +08:00
|
|
|
make
|
|
|
|
|
|
|
|
if [ $? -ne '0' ]; then
|
|
|
|
echo "make flightgear failed"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
make install
|
2012-01-18 06:43:12 +08:00
|
|
|
|
2012-01-18 07:32:16 +08:00
|
|
|
# build source package and copy to output
|
|
|
|
make package_source
|
2012-01-18 08:08:33 +08:00
|
|
|
cp flightgear-*.tar.bz2 ../output/.
|
2012-01-18 07:32:16 +08:00
|
|
|
|