diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2021-01-15 15:17:04 +0100 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2021-01-15 15:17:04 +0100 |
commit | b15c4fb7e048bf327e43f734393ec75eabfccc49 (patch) | |
tree | 826d67baf8e59a6126ecac3a929a6c1897e3190a /ubuntu/_base/applications/tork/debian/rules | |
parent | a7d5d2acbfeca4b59ecf7dd7aa3ba0ce0ad7e913 (diff) | |
download | tde-packaging-b15c4fb7e048bf327e43f734393ec75eabfccc49.tar.gz tde-packaging-b15c4fb7e048bf327e43f734393ec75eabfccc49.zip |
DEB tork: Switch to cmake.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/_base/applications/tork/debian/rules')
-rwxr-xr-x | ubuntu/_base/applications/tork/debian/rules | 26 |
1 files changed, 16 insertions, 10 deletions
diff --git a/ubuntu/_base/applications/tork/debian/rules b/ubuntu/_base/applications/tork/debian/rules index 232394751..4d427949d 100755 --- a/ubuntu/_base/applications/tork/debian/rules +++ b/ubuntu/_base/applications/tork/debian/rules @@ -1,21 +1,27 @@ #!/usr/bin/make -f -# Currently is not possible to build piklab with --enable-final -DEB_BUILD_OPTIONS += noopt - include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk include debian/cdbs/debian-tde.mk -DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ && echo xz || echo bzip2) +DEB_CMAKE_EXTRA_FLAGS := \ + -DCMAKE_EXPORT_COMPILE_COMMANDS="ON" \ + -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" \ + -DWITH_ALL_OPTIONS="ON" + install/tork-trinity:: + dh_testdir mkdir -p debian/tmp/usr/share/menu - sed "s|package(tork)|package(tork-trinity)|" \ + sed "s|package(tork)|package($(cdbs_curpkg))|" \ <debian/tmp/opt/trinity/share/menu/tork \ - >debian/tmp/usr/share/menu/tork-trinity + >debian/tmp/usr/share/menu/$(cdbs_curpkg) |