diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2020-07-05 16:27:43 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2020-07-05 16:27:43 +0200 |
commit | 1d7d56329e97396191b11590470c01f041b922ea (patch) | |
tree | 7b657055766fde288fccfa8e9318602e3a8c5e50 /ubuntu/_base/applications/tastymenu/debian/rules | |
parent | 4cbe3544a411c1d3bd71be0748492bb6e8ed6ccd (diff) | |
download | tde-packaging-1d7d56329e97396191b11590470c01f041b922ea.tar.gz tde-packaging-1d7d56329e97396191b11590470c01f041b922ea.zip |
DEB tastymenu: Add packaging files.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/applications/tastymenu/debian/rules')
-rwxr-xr-x | ubuntu/_base/applications/tastymenu/debian/rules | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/ubuntu/_base/applications/tastymenu/debian/rules b/ubuntu/_base/applications/tastymenu/debian/rules new file mode 100755 index 000000000..cee2a3058 --- /dev/null +++ b/ubuntu/_base/applications/tastymenu/debian/rules @@ -0,0 +1,19 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk +include debian/cdbs/debian-tde.mk + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_INSTALL_PREFIX="/opt/trinity" \ + -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" \ + -DBUILD_ALL="ON" \ + -DWITH_ALL_OPTIONS="ON" |