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)
|
|
|
|
|
2016-01-07 14:59:33 +00:00
|
|
|
# to build Subsurface-mobile on the desktop change this to
|
|
|
|
# SUBSURFACE_EXECUTABLE=MobileExecutable
|
|
|
|
SUBSURFACE_EXECUTABLE=DesktopExecutable
|
|
|
|
|
|
|
|
|
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-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-08-27 20:28:25 +00:00
|
|
|
git fetch origin
|
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
|
|
|
|
|
2016-01-08 05:30:51 +00:00
|
|
|
if [ "$SUBSURFACE_EXECUTABLE" = "DesktopExecutable" ] ; then
|
|
|
|
# build grantlee
|
2015-06-04 18:53:31 +00:00
|
|
|
|
2016-01-08 05:30:51 +00:00
|
|
|
cd $SRC
|
2015-06-04 18:53:31 +00:00
|
|
|
|
2016-01-08 05:30:51 +00:00
|
|
|
if [ ! -d grantlee ] ; then
|
|
|
|
if [[ $1 = local ]] ; then
|
|
|
|
git clone $SRC/../grantlee grantlee
|
|
|
|
else
|
|
|
|
git clone git://subsurface-divelog.org/grantlee
|
|
|
|
fi
|
2015-06-04 18:53:31 +00:00
|
|
|
fi
|
2016-01-08 05:30:51 +00:00
|
|
|
cd grantlee
|
|
|
|
if ! git checkout v5.0.0 ; then
|
|
|
|
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
|
2015-06-04 18:53:31 +00:00
|
|
|
fi
|
|
|
|
|
2016-01-07 14:59:33 +00:00
|
|
|
# pull the plasma-mobile components from upstream if building Subsurface-mobile
|
|
|
|
if [ "$SUBSURFACE_EXECUTABLE" = "MobileExecutable" ] ; then
|
|
|
|
# now bring in the latest Plasma-mobile mobile components plus a couple of icons that we need
|
|
|
|
# first, get the latest from upstream
|
|
|
|
# yes, this is a bit overkill as we clone a lot of stuff for just a few files, but this way
|
|
|
|
# we stop having to manually merge our code with upstream all the time
|
|
|
|
# as we get closer to shipping a production version we'll likely check out specific tags
|
|
|
|
# or SHAs from upstream
|
|
|
|
cd $SRC
|
|
|
|
if [ ! -d plasma-mobile ] ; then
|
|
|
|
git clone git://github.com/KDE/plasma-mobile
|
|
|
|
fi
|
|
|
|
pushd plasma-mobile
|
|
|
|
git pull
|
|
|
|
popd
|
|
|
|
if [ ! -d breeze-icons ] ; then
|
|
|
|
git clone git://anongit.kde.org/breeze-icons
|
|
|
|
fi
|
|
|
|
pushd breeze-icons
|
|
|
|
git pull
|
|
|
|
popd
|
|
|
|
|
|
|
|
# now copy the components and a couple of icons into plae
|
|
|
|
MC=$SRC/subsurface/qt-mobile/qml/mobilecomponents
|
|
|
|
PMMC=plasma-mobile/components/mobilecomponents
|
|
|
|
BREEZE=breeze-icons
|
|
|
|
|
|
|
|
rm -rf $MC
|
|
|
|
mkdir -p $MC/icons
|
|
|
|
cp -R $PMMC/qml/* $MC/
|
|
|
|
cp $PMMC/fallbacktheme/*qml $MC/
|
|
|
|
|
|
|
|
cp $BREEZE/icons/actions/24/dialog-cancel.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/distribute-horizontal-x.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/document-edit.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/document-save.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/go-next.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/24/go-previous.svg $MC/icons
|
|
|
|
cp $BREEZE/icons/actions/16/view-readermode.svg $MC/icons
|
|
|
|
|
|
|
|
echo org.kde.plasma.mobilecomponents synced from upstream
|
|
|
|
fi
|
|
|
|
|
2015-06-04 18:53:31 +00:00
|
|
|
# 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-09-04 19:13:02 +00:00
|
|
|
export CMAKE_PREFIX_PATH=$INSTALL_ROOT/lib/cmake
|
2015-09-03 01:35:40 +00:00
|
|
|
cmake -DCMAKE_BUILD_TYPE=Debug .. \
|
2016-01-07 14:59:33 +00:00
|
|
|
-DSUBSURFACE_TARGET_EXECUTABLE=$SUBSURFACE_EXECUTABLE \
|
2015-04-22 21:35:18 +00:00
|
|
|
-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-12-15 06:34:15 +00:00
|
|
|
-DNO_PRINTING=OFF
|
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
|
2015-09-03 01:35:40 +00:00
|
|
|
|
|
|
|
if [ $PLATFORM = Darwin ] ; then
|
|
|
|
LIBRARY_PATH=$INSTALL_ROOT/lib make install
|
|
|
|
fi
|