From 5195a57d4919924c7e7970506b1994e83fdebbbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sl=C3=A1vek=20Banko?= Date: Sun, 11 Jul 2021 21:27:29 +0200 Subject: DEB: Rearranged applications folder into sub categories. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Slávek Banko --- .../_base/applications/office/basket/debian/rules | 112 +++++++++++++++++++++ 1 file changed, 112 insertions(+) create mode 100755 ubuntu/_base/applications/office/basket/debian/rules (limited to 'ubuntu/_base/applications/office/basket/debian/rules') diff --git a/ubuntu/_base/applications/office/basket/debian/rules b/ubuntu/_base/applications/office/basket/debian/rules new file mode 100755 index 000000000..200c5baf7 --- /dev/null +++ b/ubuntu/_base/applications/office/basket/debian/rules @@ -0,0 +1,112 @@ +#!/usr/bin/make -f +# -*- makefile -*- + +#export DH_VERBOSE=1 + +DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/kde +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) + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +# These are used for cross-compiling and for saving the configure script +# from having to guess our platform (since we know it already) +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +#include /usr/share/cdbs/1/rules/patchsys-quilt.mk + +post-patches:: + dh_testdir + +config.status: post-patches + dh_testdir + test -e config.sub -a -L config.sub || \ + ln -sf /usr/share/misc/config.sub config.sub + test -e config.guess -a -L config.guess || \ + ln -sf /usr/share/misc/config.guess config.guess + + cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in + cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh + $(MAKE) -f admin/Makefile.common dist; + + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \ + --prefix=/opt/trinity --with-qt-dir=/usr/share/qt3 \ + --with-qt-includes=/usr/include/qt3 \ + --with-qt-libraries=/usr/share/qt3/lib \ + --mandir=/opt/trinity/share/man \ + --infodir=/opt/trinity/share/info \ + --disable-debug kde_htmldir=/opt/trinity/share/doc/tde/HTML \ + --with-extra-libs=/opt/trinity/lib + + +build: build-stamp + +build-stamp: config.status + dh_testdir + + $(MAKE) + + touch build-stamp + +clean:: + dh_testdir + dh_testroot + + -$(MAKE) distclean + + $(RM) config.cache config.sub config.guess config.log + + dh_clean + rm -f build-stamp + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + # Install into package-build-dir + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + +# mkdir -p $(CURDIR)/debian/basket-trinity/opt/trinity/share/applications/kde/ +# mv $(CURDIR)/debian/basket-trinity/opt/trinity/share/applnk/Utilities/basket.desktop $(CURDIR)/debian/basket-trinity/opt/trinity/share/applications/kde/ + +binary-indep: build install + +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples + dh_install --sourcedir=debian/tmp + dh_installmenu +# dh_installlogrotate +# dh_installinfo + dh_installman debian/basket.1 + mv debian/basket-trinity/usr/share/man debian/basket-trinity/opt/trinity/share/ + dh_link + dh_strip + dh_compress + dh_fixperms + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb $(DEB_DH_BUILDDEB_ARGS) + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install -- cgit v1.2.3