diff options
author | Michele Calgaro <[email protected]> | 2024-08-09 10:29:09 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-10-11 08:41:17 +0900 |
commit | 54a0e79b371ee0cfd4e4dde5e7d82ccec06166ad (patch) | |
tree | befa99917d1006fa9a8fed2057d14c463ffbc56f /ubuntu/_base/applications/settings/kmyfirewall/debian/rules | |
parent | ee60827df417245f14124b1b5aa49cece8b72867 (diff) | |
download | tde-packaging-54a0e79b371ee0cfd4e4dde5e7d82ccec06166ad.tar.gz tde-packaging-54a0e79b371ee0cfd4e4dde5e7d82ccec06166ad.zip |
DEB kmyfirewall: cmake conversion
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ubuntu/_base/applications/settings/kmyfirewall/debian/rules')
-rwxr-xr-x | ubuntu/_base/applications/settings/kmyfirewall/debian/rules | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/ubuntu/_base/applications/settings/kmyfirewall/debian/rules b/ubuntu/_base/applications/settings/kmyfirewall/debian/rules index 76a0f44d3..a6797f19a 100755 --- a/ubuntu/_base/applications/settings/kmyfirewall/debian/rules +++ b/ubuntu/_base/applications/settings/kmyfirewall/debian/rules @@ -1,15 +1,17 @@ #!/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_CONFIGURE_INCLUDEDIR := /opt/trinity/include -DEB_CONFIGURE_MANDIR := /opt/trinity/share/man -DEB_CONFIGURE_PREFIX := /opt/trinity -DEB_CONFIGURE_INFODIR := /opt/trinity/share/info - -cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug) - -binary-install/kmyfirewall-trinity:: - rm -f debian/$(cdbs_curpkg)/opt/trinity/lib/*.so - chmod +x debian/$(cdbs_curpkg)/opt/trinity/share/apps/kmyfirewall/scripts/installer/linux/*.sh +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" |