diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2019-07-06 15:15:16 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2019-07-06 15:15:16 +0200 |
commit | cbb5b5ca3302930a9393f589c08c929cac7805ee (patch) | |
tree | 3bbd42140c62589a2522b09b86a8e05baa7f2a37 /debian | |
parent | e0f78f96dd5ca6d89cd2c273331a084dd13821b4 (diff) | |
download | tde-packaging-cbb5b5ca3302930a9393f589c08c929cac7805ee.tar.gz tde-packaging-cbb5b5ca3302930a9393f589c08c929cac7805ee.zip |
DEB smartcardauth: Switch to cmake.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/_base/applications/smartcardauth/debian/control | 2 | ||||
-rwxr-xr-x | debian/_base/applications/smartcardauth/debian/rules | 13 |
2 files changed, 13 insertions, 2 deletions
diff --git a/debian/_base/applications/smartcardauth/debian/control b/debian/_base/applications/smartcardauth/debian/control index 0e7a8c574..be0ac51ac 100644 --- a/debian/_base/applications/smartcardauth/debian/control +++ b/debian/_base/applications/smartcardauth/debian/control @@ -3,7 +3,7 @@ Section: tde Priority: extra Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net> Uploaders: Timothy Pearson <kb9vqf@pearsoncomputing.net> -Build-Depends: debhelper (>= 7.0.50~), cdbs, libpcsclite1, libpcsc-perl, libpar-packer-perl, libdb-dev (>= 4.7), libpam0g-dev, libpkcs11-helper1-dev, libgnutls-dev | libgnutls28-dev | libgnutls30-dev, libkrb5-dev, libtqtinterface-dev +Build-Depends: debhelper (>= 7.0.50~), cdbs, quilt, cmake, libpkcs11-helper1-dev, libgnutls-dev | libgnutls28-dev | libgnutls30-dev Standards-Version: 3.8.4 Package: smartcardauth diff --git a/debian/_base/applications/smartcardauth/debian/rules b/debian/_base/applications/smartcardauth/debian/rules index fb1fa68e3..b51d7e7ba 100755 --- a/debian/_base/applications/smartcardauth/debian/rules +++ b/debian/_base/applications/smartcardauth/debian/rules @@ -1,6 +1,7 @@ #!/usr/bin/make -f -include /usr/share/cdbs/1/class/makefile.mk + include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk DEB_BUILD_OPTIONS := nostrip export DEB_BUILD_OPTIONS = debug nostrip @@ -14,3 +15,13 @@ DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ && echo xz || echo bzip2) DEB_DH_SHLIBDEPS_ARGS_ALL=--dpkg-shlibdeps-params=--ignore-missing-info + +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_INSTALL_PREFIX="/usr" \ + -DCONFIG_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc" \ + -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_VERBOSE_MAKEFILE="ON" \ + -DCMAKE_SKIP_RPATH="OFF" \ + -DWITH_ALL_OPTIONS="ON" |