diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-12-10 12:39:27 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-12-10 13:08:35 -0800 |
commit | c9f927d5474cc839eb61bbc2c36469d7eb1a6d19 (patch) | |
tree | 456919259779501ee583b0f4bfd112071270d033 /packaging/ubuntu | |
parent | 4ee59bc1b707b89ff96caa1d96fc95e7acfd8b88 (diff) | |
download | subsurface-c9f927d5474cc839eb61bbc2c36469d7eb1a6d19.tar.gz |
Updates to Ubuntu package building process
Marble can't be static, so instead we build a shared library but give it a
different name so it can be installed in parallel with the "real"
libmarblewidget.so.
Also make sure that the correct libusb is installed so that Atomics Aquatics
dive computers are supported.
Fixes #782
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ubuntu')
-rw-r--r-- | packaging/ubuntu/debian/control | 2 | ||||
-rwxr-xr-x | packaging/ubuntu/debian/rules | 9 | ||||
-rw-r--r-- | packaging/ubuntu/make-package.sh | 2 |
3 files changed, 8 insertions, 5 deletions
diff --git a/packaging/ubuntu/debian/control b/packaging/ubuntu/debian/control index 874f25c2d..679679ba2 100644 --- a/packaging/ubuntu/debian/control +++ b/packaging/ubuntu/debian/control @@ -17,7 +17,7 @@ Build-Depends: asciidoc, automake, cmake, dpkg-dev (>= 1.16.1.1), - libusb-dev, + libusb-1.0-0-dev, dh-autoreconf, libz-dev, libssl-dev, diff --git a/packaging/ubuntu/debian/rules b/packaging/ubuntu/debian/rules index 76ac5b98a..a4c51d912 100755 --- a/packaging/ubuntu/debian/rules +++ b/packaging/ubuntu/debian/rules @@ -21,11 +21,15 @@ override_dh_auto_configure: (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 ; \ + cmake -DQTONLY=ON -DQT5BUILD=ON \ + -DBUILD_MARBLE_APPS=OFF -DBUILD_MARBLE_EXAMPLES=OFF \ + -DBUILD_MARBLE_TESTS=OFF -DBUILD_MARBLE_TOOLS=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 + qmake LIBDCDEVEL=./libdivecomputer LIBGIT2DEVEL=./libgit2 LIBGIT2STATIC=1 LIBMARBLEDEVEL=./marble-build SPECIAL_MARBLE_PREFIX=1 subsurface.pro override_dh_installchangelogs: dh_installchangelogs @@ -34,4 +38,3 @@ override_dh_installchangelogs: 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 - diff --git a/packaging/ubuntu/make-package.sh b/packaging/ubuntu/make-package.sh index 22c0998e2..423e9eb62 100644 --- a/packaging/ubuntu/make-package.sh +++ b/packaging/ubuntu/make-package.sh @@ -17,7 +17,7 @@ fi mkdir subsurface_$VERSION (cd subsurface ; tar cf - . ) | (cd subsurface_$VERSION ; tar xf - ) cd subsurface_$VERSION -rm -rf .git libdivecomputer/.git libgit2/.git +rm -rf .git libdivecomputer/.git libgit2/.git marble-source/.git echo $GITVERSION > .gitversion dh_make --email dirk@hohndel.org -c gpl2 --createorig --single --yes -p subsurface_$VERSION |