mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-29 05:30:41 +00:00
2b40e15713
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com> --- please note, that i have no way to test most of the scripts ATM.
40 lines
1.5 KiB
Makefile
Executable file
40 lines
1.5 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
# -*- makefile -*-
|
|
|
|
# Uncomment this to turn on verbose mode.
|
|
export DH_VERBOSE=1
|
|
export DEB_BUILD_OPTIONS+=nocheck
|
|
export DEB_CMAKE_INSTALL_PREFIX=/usr
|
|
|
|
%:
|
|
dh $@ --buildsystem=cmake --builddirectory=subsurface-build --parallel
|
|
|
|
override_dh_auto_clean:
|
|
(cd libdivecomputer ; make clean || true)
|
|
make clean || true
|
|
rm -rf libgit2/build
|
|
rm -f ssrf-version.h
|
|
rm -f subsurface
|
|
rm -f Makefile
|
|
|
|
override_dh_auto_configure:
|
|
(cd libdivecomputer ; autoreconf --install ; ./configure --disable-shared ; make -j8 )
|
|
(mkdir libgit2/build ; cd libgit2/build ; \
|
|
cmake -DBUILD_SHARED_LIBS=OFF -DBUILD_CLAR=OFF -DBUILD_EXAMPLES=OFF .. ; \
|
|
sed -i 's/.so$/.a/' CMakeCache.txt ; make -j8 )
|
|
(mkdir subsurface-build ; cd subsurface-build ; \
|
|
cmake -DCMAKE_BUILD_TYPE=Release \
|
|
-DPREFER_GIT_FROMSOURCE=1 \
|
|
-DLIBGIT2_INCLUDE_DIR=$$(pwd)/../libgit2/include \
|
|
-DLIBGIT2_LIBRARIES=$$(pwd)/../libgit2/build/libgit2.a \
|
|
-DLIBDIVECOMPUTER_INCLUDE_DIR=$$(pwd)/../libdivecomputer/include \
|
|
-DLIBDIVECOMPUTER_LIBRARIES=$$(pwd)/../libdivecomputer/src/.libs/libdivecomputer.a \
|
|
$$(pwd)/.. ; )
|
|
|
|
override_dh_installchangelogs:
|
|
dh_installchangelogs
|
|
dh_installchangelogs ReleaseNotes/ReleaseNotes.txt
|
|
txt2html Documentation/user-manual.txt > Documentation/user-manual.html
|
|
mkdir -p debian/subsurface/usr/share/doc/subsurface
|
|
cp Documentation/user-manual.txt debian/subsurface/usr/share/doc/subsurface/
|
|
cp Documentation/user-manual.html debian/subsurface/usr/share/doc/subsurface/html
|