diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-26 12:10:05 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-26 12:10:05 +0100 |
commit | a3c012dfddd24ea0990ac66357d1ec5211c906a0 (patch) | |
tree | 1fbce8d79376d671010533fe5045475464b3ec64 /debian | |
parent | d720a7987adee52f4da1d316270be5188331d6f8 (diff) | |
parent | e672e51267ff87405700cbb80807aa6a678a06a5 (diff) | |
download | ayatana-indicator-bluetooth-a3c012dfddd24ea0990ac66357d1ec5211c906a0.tar.gz ayatana-indicator-bluetooth-a3c012dfddd24ea0990ac66357d1ec5211c906a0.tar.bz2 ayatana-indicator-bluetooth-a3c012dfddd24ea0990ac66357d1ec5211c906a0.zip |
Merge branch 'sunweaver-pr/cmake-port'
Attributes GH PR #9: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/9
Diffstat (limited to 'debian')
-rw-r--r-- | debian/control | 4 | ||||
-rwxr-xr-x | debian/rules | 15 |
2 files changed, 9 insertions, 10 deletions
diff --git a/debian/control b/debian/control index a66d6fe..56c2823 100644 --- a/debian/control +++ b/debian/control @@ -3,9 +3,9 @@ Section: gnome Priority: optional Maintainer: Mike Gabriel <mike.gabriel@das-netzwerkteam.de> Build-Depends: debhelper (>= 9.0), - dh-autoreconf, dh-systemd, - gnome-common, + cmake, + cmake-extras (>= 0.10), libglib2.0-dev (>= 2.32.0), liburl-dispatcher1-dev | hello, systemd [linux-any], diff --git a/debian/rules b/debian/rules index 542fd05..decbbae 100755 --- a/debian/rules +++ b/debian/rules @@ -5,15 +5,14 @@ NULL = export DPKG_GENSYMBOLS_CHECK_LEVEL=4 %: - dh $@ --parallel --with systemd --with autoreconf + dh $@ --parallel --with systemd -override_dh_autoreconf: - NOCONFIGURE=1 dh_autoreconf ./autogen.sh - -override_dh_install: - dh_install - find debian/ayatana-indicator-bluetooth/usr/lib -name *.la -delete - find debian/ayatana-indicator-bluetooth/usr/lib -name *.a -delete +override_dh_auto_configure: + # Debian defines CMAKE_INSTALL_LOCALSTATEDIR as /usr/var, which is wrong. + # So until Debian bug 719148 is fixed, do it ourselves. + dh_auto_configure -- -DCMAKE_INSTALL_LOCALSTATEDIR="/var" \ + -Denable_tests=off \ + $(NULL) override_dh_missing: dh_missing --fail-missing |