diff options
author | Slávek Banko <[email protected]> | 2018-08-28 03:34:27 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2018-09-18 09:26:46 +0200 |
commit | c7e24f895cb71f2c10e1811c36bac2b77a619a0b (patch) | |
tree | 46bb3e12988530a88b5813a951c615c68ef624bf /ubuntu/maverick/applications/tdedocker/debian/rules | |
parent | 44d0ade8a744850f7fe719b7e884e49920d34fa7 (diff) | |
download | tde-packaging-c7e24f895cb71f2c10e1811c36bac2b77a619a0b.tar.gz tde-packaging-c7e24f895cb71f2c10e1811c36bac2b77a619a0b.zip |
DEB: Add tdedocker application
Initial addition under the name KDocker
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'ubuntu/maverick/applications/tdedocker/debian/rules')
-rwxr-xr-x | ubuntu/maverick/applications/tdedocker/debian/rules | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ubuntu/maverick/applications/tdedocker/debian/rules b/ubuntu/maverick/applications/tdedocker/debian/rules new file mode 100755 index 000000000..66c17dbdf --- /dev/null +++ b/ubuntu/maverick/applications/tdedocker/debian/rules @@ -0,0 +1,24 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk +include /usr/share/cdbs/1/rules/utils.mk +include debian/cdbs/debian-qt-kde.mk + +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ + -DCONFIG_INSTALL_DIR="/etc/trinity" \ + -DSYSCONF_INSTALL_DIR="/etc/trinity" \ + -DXDG_MENU_INSTALL_DIR="/etc/xdg/menus" \ + -DCMAKE_BUILD_TYPE=RelWithDebInfo \ + -DCMAKE_VERBOSE_MAKEFILE="ON" \ + -DCMAKE_SKIP_RPATH="OFF" \ + -DBUILD_ALL="ON" + +# Honour "parallel=N" option of DEB_BUILD_OPTIONS. Comment out to +# never build in parallel, regardless of DEB_BUILD_OPTIONS. +DEB_BUILD_PARALLEL = true + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) |