2015-02-17 21:10:45 +00:00
|
|
|
#!/bin/bash
|
|
|
|
#
|
|
|
|
# this should be run from the src directory, the layout is supposed to
|
|
|
|
# look like this:
|
|
|
|
#.../src/subsurface
|
|
|
|
# /libgit2
|
|
|
|
# /marble-source
|
|
|
|
# /libdivecomputer
|
|
|
|
#
|
|
|
|
# the script will build these three libraries from source, even if
|
2015-04-26 18:43:02 +00:00
|
|
|
# they are installed as part of the host OS since we have seen
|
2015-02-17 21:10:45 +00:00
|
|
|
# numerous cases where building with random versions (especially older,
|
|
|
|
# but sometimes also newer versions than recommended here) will lead
|
|
|
|
# to all kinds of unnecessary pain
|
2015-04-15 18:33:14 +00:00
|
|
|
#
|
|
|
|
# it installs the libraries and subsurface in the install-root subdirectory
|
|
|
|
# of the current directory (except on Mac where the Subsurface.app ends up
|
|
|
|
# in subsurface/build
|
2015-02-17 21:10:45 +00:00
|
|
|
|
2015-06-02 17:22:10 +00:00
|
|
|
# create a log file of the build
|
|
|
|
exec 1> >(tee build.log) 2>&1
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
SRC=$(pwd)
|
2015-04-15 18:33:14 +00:00
|
|
|
PLATFORM=$(uname)
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
if [[ ! -d "subsurface" ]] ; then
|
|
|
|
echo "please start this script from the directory containing the Subsurface source directory"
|
|
|
|
exit 1
|
|
|
|
fi
|
2015-02-18 06:03:15 +00:00
|
|
|
|
2015-04-09 22:00:52 +00:00
|
|
|
mkdir -p install-root
|
|
|
|
INSTALL_ROOT=$SRC/install-root
|
2015-02-17 21:10:45 +00:00
|
|
|
|
2015-06-04 20:52:13 +00:00
|
|
|
# make sure we find our own packages first (e.g., libgit2 only uses pkg_config to find libssh2)
|
|
|
|
export PKG_CONFIG_PATH=$INSTALL_ROOT/lib/pkgconfig:$PKG_CONFIG_PATH
|
|
|
|
|
2015-04-15 18:33:14 +00:00
|
|
|
echo Building in $SRC, installing in $INSTALL_ROOT
|
|
|
|
|
2015-06-02 17:40:28 +00:00
|
|
|
# if on a mac, let's build our own libssh2
|
|
|
|
|
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
echo Building libssh2
|
|
|
|
if [ ! -d libssh2 ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../libssh2 libssh2
|
|
|
|
else
|
|
|
|
git clone git://github.com/libssh2/libssh2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd libssh2
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DBUILD_EXAMPLES=OFF -DBUILD_TESTING=OFF -DBUILD_SHARED_LIBS=ON \
|
|
|
|
..
|
|
|
|
cmake --build . --target install
|
|
|
|
|
|
|
|
# in order for macdeployqt to do its job correctly, we need the full path in the dylib ID
|
|
|
|
cd $INSTALL_ROOT/lib
|
|
|
|
NAME=$(otool -L libssh2.dylib | grep -v : | head -1 | cut -f1 -d\ | tr -d '\t')
|
|
|
|
echo $NAME | grep / > /dev/null 2>&1
|
|
|
|
if [ $? -eq 1 ] ; then
|
|
|
|
install_name_tool -id "$INSTALL_ROOT/lib/$NAME" "$INSTALL_ROOT/lib/$NAME"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
# build libgit2
|
|
|
|
|
2015-06-04 20:52:13 +00:00
|
|
|
cd $SRC
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
if [ ! -d libgit2 ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../libgit2 libgit2
|
|
|
|
else
|
|
|
|
git clone git://github.com/libgit2/libgit2
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd libgit2
|
2015-06-01 19:52:42 +00:00
|
|
|
# let's build with a recent enough version of master for the latest features
|
2015-06-04 20:52:13 +00:00
|
|
|
git pull origin master
|
2015-08-26 18:44:56 +00:00
|
|
|
if ! git checkout v0.23.1 ; then
|
|
|
|
echo "Can't find the right tag in libgit2 - giving up"
|
2015-06-04 17:47:57 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-02-17 21:10:45 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2015-04-09 22:00:52 +00:00
|
|
|
cmake -DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT -DCMAKE_BUILD_TYPE=Release -DBUILD_CLAR=OFF ..
|
2015-06-04 20:52:13 +00:00
|
|
|
make -j4
|
|
|
|
make install
|
2015-02-17 21:10:45 +00:00
|
|
|
|
2015-04-15 18:33:14 +00:00
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
# in order for macdeployqt to do its job correctly, we need the full path in the dylib ID
|
|
|
|
cd $INSTALL_ROOT/lib
|
|
|
|
NAME=$(otool -L libgit2.dylib | grep -v : | head -1 | cut -f1 -d\ | tr -d '\t')
|
|
|
|
echo $NAME | grep / > /dev/null 2>&1
|
|
|
|
if [ $? -eq 1 ] ; then
|
|
|
|
install_name_tool -id "$INSTALL_ROOT/lib/$NAME" "$INSTALL_ROOT/lib/$NAME"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
cd $SRC
|
|
|
|
|
|
|
|
# build libdivecomputer
|
|
|
|
|
|
|
|
if [ ! -d libdivecomputer ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../libdivecomputer libdivecomputer
|
|
|
|
else
|
2015-08-26 18:44:56 +00:00
|
|
|
git clone -b Subsurface-branch git://subsurface-divelog.org/libdc libdivecomputer
|
2015-02-17 21:10:45 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd libdivecomputer
|
2015-07-12 12:42:18 +00:00
|
|
|
git pull --rebase
|
2015-08-26 18:44:56 +00:00
|
|
|
if ! git checkout Subsurface-branch ; then
|
|
|
|
echo "can't check out the Subsurface-branch branch of libdivecomputer -- giving up"
|
2015-06-04 17:47:57 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-02-17 21:10:45 +00:00
|
|
|
if [ ! -f configure ] ; then
|
|
|
|
autoreconf --install
|
|
|
|
fi
|
2015-04-26 17:01:25 +00:00
|
|
|
./configure --prefix=$INSTALL_ROOT
|
2015-02-17 21:10:45 +00:00
|
|
|
make -j4
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd $SRC
|
|
|
|
|
|
|
|
# build libssrfmarblewidget
|
|
|
|
|
|
|
|
if [ ! -d marble-source ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../marble-source marble-source
|
|
|
|
else
|
2015-08-26 18:44:56 +00:00
|
|
|
git clone -b Subsurface-branch git://subsurface-divelog.org/marble marble-source
|
2015-02-17 21:10:45 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd marble-source
|
2015-07-12 12:42:18 +00:00
|
|
|
git pull --rebase
|
2015-08-26 18:44:56 +00:00
|
|
|
if ! git checkout Subsurface-branch ; then
|
|
|
|
echo "can't check out the Subsurface-branch branch of marble -- giving up"
|
2015-06-04 17:47:57 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2015-02-17 21:10:45 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2015-08-16 23:56:56 +00:00
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
export CMAKE_PREFIX_PATH=~/Qt/5.5/clang_64/lib/cmake
|
|
|
|
fi
|
2015-02-17 21:10:45 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release -DQTONLY=TRUE -DQT5BUILD=ON \
|
2015-04-09 22:00:52 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT \
|
2015-02-17 21:10:45 +00:00
|
|
|
-DBUILD_MARBLE_TESTS=NO \
|
|
|
|
-DWITH_DESIGNER_PLUGIN=NO \
|
|
|
|
-DBUILD_MARBLE_APPS=NO \
|
|
|
|
$SRC/marble-source
|
|
|
|
cd src/lib/marble
|
|
|
|
make -j4
|
|
|
|
make install
|
|
|
|
|
2015-08-16 23:57:24 +00:00
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
# in order for macdeployqt to do its job correctly, we need the full path in the dylib ID
|
|
|
|
cd $INSTALL_ROOT/lib
|
|
|
|
NAME=$(otool -L libssrfmarblewidget.dylib | grep -v : | head -1 | cut -f1 -d\ | tr -d '\t' | cut -f3 -d/ )
|
|
|
|
echo $NAME | grep / > /dev/null 2>&1
|
|
|
|
if [ $? -eq 1 ] ; then
|
|
|
|
install_name_tool -id "$INSTALL_ROOT/lib/$NAME" "$INSTALL_ROOT/lib/$NAME"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2015-06-04 18:53:31 +00:00
|
|
|
# build grantlee
|
|
|
|
|
|
|
|
cd $SRC
|
|
|
|
|
|
|
|
if [ ! -d grantlee ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../grantlee grantlee
|
|
|
|
else
|
2015-07-07 19:45:59 +00:00
|
|
|
git clone git://subsurface-divelog.org/grantlee
|
2015-06-04 18:53:31 +00:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
cd grantlee
|
2015-06-04 20:52:13 +00:00
|
|
|
if ! git checkout v5.0.0 ; then
|
2015-06-04 18:53:31 +00:00
|
|
|
echo "can't check out v5.0.0 of grantlee -- giving up"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
mkdir -p build
|
|
|
|
cd build
|
|
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
|
|
-DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT \
|
|
|
|
-DBUILD__TESTS=NO \
|
|
|
|
$SRC/grantlee
|
|
|
|
make -j4
|
|
|
|
make install
|
|
|
|
|
|
|
|
# finally, build Subsurface
|
|
|
|
|
2015-04-27 11:18:04 +00:00
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
SH_LIB_EXT=dylib
|
|
|
|
else
|
|
|
|
SH_LIB_EXT=so
|
|
|
|
fi
|
|
|
|
|
2015-02-17 21:10:45 +00:00
|
|
|
cd $SRC/subsurface
|
2015-04-07 21:43:38 +00:00
|
|
|
mkdir -p build
|
|
|
|
cd build
|
2015-04-22 21:35:18 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=$INSTALL_ROOT .. \
|
|
|
|
-DLIBGIT2_INCLUDE_DIR=$INSTALL_ROOT/include \
|
2015-04-27 11:18:04 +00:00
|
|
|
-DLIBGIT2_LIBRARIES=$INSTALL_ROOT/lib/libgit2.$SH_LIB_EXT \
|
2015-04-22 21:35:18 +00:00
|
|
|
-DLIBDIVECOMPUTER_INCLUDE_DIR=$INSTALL_ROOT/include \
|
|
|
|
-DLIBDIVECOMPUTER_LIBRARIES=$INSTALL_ROOT/lib/libdivecomputer.a \
|
|
|
|
-DMARBLE_INCLUDE_DIR=$INSTALL_ROOT/include \
|
2015-06-01 19:52:42 +00:00
|
|
|
-DMARBLE_LIBRARIES=$INSTALL_ROOT/lib/libssrfmarblewidget.$SH_LIB_EXT \
|
2015-06-04 18:53:31 +00:00
|
|
|
-DNO_PRINTING=OFF \
|
2015-06-01 19:52:42 +00:00
|
|
|
-DUSE_LIBGIT23_API=1
|
2015-04-22 21:35:18 +00:00
|
|
|
|
2015-06-02 17:43:13 +00:00
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
rm -rf Subsurface.app
|
|
|
|
fi
|
|
|
|
|
2015-08-16 19:35:25 +00:00
|
|
|
LIBRARY_PATH=$INSTALL_ROOT/lib make -j4
|
|
|
|
LIBRARY_PATH=$INSTALL_ROOT/lib make install
|