diff options
author | Slávek Banko <[email protected]> | 2019-05-02 17:52:36 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2019-05-02 17:52:36 +0200 |
commit | ae2affd8684e7e8c7a52a2e17e8a4bcea16b137e (patch) | |
tree | adc06f0accf6a2d6600a18bdf337f00ccada867f /ubuntu | |
parent | caf63f4e59627dcebfebae92c662117a0f09a0da (diff) | |
download | tde-packaging-ae2affd8684e7e8c7a52a2e17e8a4bcea16b137e.tar.gz tde-packaging-ae2affd8684e7e8c7a52a2e17e8a4bcea16b137e.zip |
DEB kftpgrabber: Disable build with --enable-final.
Add basic package documentation.
Cleanup rules.
Signed-off-by: Slávek Banko <[email protected]>
Diffstat (limited to 'ubuntu')
-rw-r--r-- | ubuntu/_base/applications/kftpgrabber/debian/docs | 2 | ||||
-rwxr-xr-x | ubuntu/_base/applications/kftpgrabber/debian/rules | 28 |
2 files changed, 6 insertions, 24 deletions
diff --git a/ubuntu/_base/applications/kftpgrabber/debian/docs b/ubuntu/_base/applications/kftpgrabber/debian/docs index e845566c0..ca0272abf 100644 --- a/ubuntu/_base/applications/kftpgrabber/debian/docs +++ b/ubuntu/_base/applications/kftpgrabber/debian/docs @@ -1 +1,3 @@ +AUTHORS README +TODO diff --git a/ubuntu/_base/applications/kftpgrabber/debian/rules b/ubuntu/_base/applications/kftpgrabber/debian/rules index 521b25538..c4ea6503a 100755 --- a/ubuntu/_base/applications/kftpgrabber/debian/rules +++ b/ubuntu/_base/applications/kftpgrabber/debian/rules @@ -1,5 +1,8 @@ #!/usr/bin/make -f - + +# Currently is not possible to build with --enable-final +DEB_BUILD_OPTIONS += noopt + include /usr/share/cdbs/1/rules/debhelper.mk include debian/cdbs/debian-tde.mk @@ -11,27 +14,6 @@ DEB_CONFIGURE_INFODIR := /opt/trinity/share/info DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ && echo xz || echo bzip2) -post-patches:: debian/stamp-bootstrap - -debian/stamp-bootstrap: - dh_testdir - - # Regenerate build system -ifneq "$(wildcard /usr/share/libtool/ltmain.sh)" "" - cp -f /usr/share/libtool/ltmain.sh admin/ltmain.sh -endif -ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" "" - cp -f /usr/share/libtool/config/ltmain.sh admin/ltmain.sh -endif -ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" "" - cp -f /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh -endif - cp -f /usr/share/aclocal/libtool.m4 admin/libtool.m4.in - - autoreconf --install && automake -f && \ - $(MAKE) -f admin/Makefile.common && \ - touch debian/stamp-bootstrap - build/kftpgrabber-trinity:: /usr/bin/docbook2x-man debian/kftpgrabber.xml @@ -42,5 +24,3 @@ binary-install/kftpgrabber-trinity:: clean:: rm -f kftpgrabber.1 - rm -f translations/*/messages/*.gmo - rm -f debian/stamp-bootstrap |