diff options
author | Slávek Banko <slavek.banko@axis.cz> | 2016-09-18 21:07:17 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2016-09-18 21:07:17 +0200 |
commit | 4d6010755e20b70b9a1056fd0d9ffe3a090ca6be (patch) | |
tree | a148d80156ff35776649aea7163b4eed8efe3455 /ubuntu/maverick/applications/tellico/debian/rules | |
parent | dd56d0db7e9620bb313ce4f1480d7d093ce7d9d1 (diff) | |
download | tde-packaging-4d6010755e20b70b9a1056fd0d9ffe3a090ca6be.tar.gz tde-packaging-4d6010755e20b70b9a1056fd0d9ffe3a090ca6be.zip |
Switch tellico to cmake on Debian and Ubuntu
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'ubuntu/maverick/applications/tellico/debian/rules')
-rwxr-xr-x | ubuntu/maverick/applications/tellico/debian/rules | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/ubuntu/maverick/applications/tellico/debian/rules b/ubuntu/maverick/applications/tellico/debian/rules index 444df8a54..1c5fa7fe5 100755 --- a/ubuntu/maverick/applications/tellico/debian/rules +++ b/ubuntu/maverick/applications/tellico/debian/rules @@ -1,9 +1,9 @@ #!/usr/bin/make -f include /usr/share/cdbs/1/rules/debhelper.mk +include /usr/share/cdbs/1/class/cmake.mk include debian/cdbs/debian-qt-kde.mk #include /usr/share/cdbs/1/rules/patchsys-quilt.mk -include /usr/share/cdbs/1/rules/utils.mk DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include DEB_CONFIGURE_MANDIR := /opt/trinity/share/man @@ -14,6 +14,16 @@ cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xine --enable-new-ldflags \ --enable-webcam +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" \ + -DWITH_ALL_OPTIONS="ON" + DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ && echo xz || echo bzip2) @@ -26,7 +36,10 @@ binary-install/tellico-data-trinity:: # Install mime info into system directory mkdir -p debian/$(cdbs_curpkg)/usr/share/mime - mv debian/$(cdbs_curpkg)/opt/trinity/share/apps/mime debian/$(cdbs_curpkg)/usr/share/ + [ ! -d debian/tmp/opt/trinity/share/apps/mime ] || \ + mv debian/tmp/opt/trinity/share/apps/mime debian/$(cdbs_curpkg)/usr/share/ + [ ! -d debian/tmp/opt/trinity/share/mime ] || \ + mv debian/tmp/opt/trinity/share/mime debian/$(cdbs_curpkg)/usr/share/ mv debian/$(cdbs_curpkg)/usr/share/mime/packages/tellico.xml debian/$(cdbs_curpkg)/usr/share/mime/packages/tellico-trinity.xml binary-install/tellico-trinity:: |