diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-02 15:04:21 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-02 18:31:36 -0800 |
commit | a1cd2306255a3a3bdcd47ffd11af884df7ed331c (patch) | |
tree | 5855a9a739b245a14d1c5d4fb2b40f60d0d4d31d /packaging | |
parent | fabdb6b65ca32180330434953079e3dc806a97d6 (diff) | |
download | subsurface-a1cd2306255a3a3bdcd47ffd11af884df7ed331c.tar.gz |
Ubuntu packaging: include static libmarblewidget
Still all Qt4 based. Baby steps.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rw-r--r-- | packaging/ubuntu/control | 1 | ||||
-rwxr-xr-x | packaging/ubuntu/rules | 12 |
2 files changed, 9 insertions, 4 deletions
diff --git a/packaging/ubuntu/control b/packaging/ubuntu/control index 98c362eba..771b335f3 100644 --- a/packaging/ubuntu/control +++ b/packaging/ubuntu/control @@ -15,7 +15,6 @@ Build-Depends: asciidoc, txt2html, libzip-dev, libsqlite3-dev, - libmarble-dev, autoconf, automake, cmake, diff --git a/packaging/ubuntu/rules b/packaging/ubuntu/rules index 5b9fdc516..76ac5b98a 100755 --- a/packaging/ubuntu/rules +++ b/packaging/ubuntu/rules @@ -12,14 +12,20 @@ override_dh_auto_clean: (cd libdivecomputer ; make clean || true) make clean || true rm -rf libgit2/build + rm -rf marble-build rm -f ssrf-version.h rm -f subsurface rm -f Makefile override_dh_auto_configure: - (cd libdivecomputer ; autoreconf --install ; ./configure ; make) - (mkdir libgit2/build ; cd libgit2/build ; cmake -DBUILD_SHARED_LIBS=OFF .. ; sed -i 's/.so$/.a/' CMakeCache.txt ; make ) - qmake LIBDCDEVEL=./libdivecomputer LIBGIT2DEVEL=./libgit2 LIBGIT2STATIC=1 subsurface.pro + (cd libdivecomputer ; autoreconf --install ; ./configure ; make -j8 ) + (mkdir libgit2/build ; cd libgit2/build ; cmake -DBUILD_SHARED_LIBS=OFF .. ; sed -i 's/.so$/.a/' CMakeCache.txt ; make -j8 ) + (mkdir marble-build ; cd marble-build ; \ + cmake -DQTONLY=ON -DBUILD_MARBLE_APPS=OFF -DBUILD_MARBLE_EXAMPLES=OFF -DBUILD_MARBLE_TESTS=OFF -DBUILD_MARBLE_TOOLS=OFF -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTING=OFF -DWITH_DESIGNER_PLUGIN=OFF -DBUILD_WITH_DBUS=OFF ../marble-source ; \ + make -j8 ; \ + mkdir include ; cd include ; for i in `find ../../marble-source -name \*.h` ; do ln -s $$i . ; echo ln -s $$i . ; done ; \ + ln -s . marble ) + qmake LIBDCDEVEL=./libdivecomputer LIBGIT2DEVEL=./libgit2 LIBGIT2STATIC=1 LIBMARBLEDEVEL=./marble-build LIBMARBLESTATIC=1 subsurface.pro override_dh_installchangelogs: dh_installchangelogs |