You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
tde-packaging/ubuntu/maverick/metapackages/kubuntu-meta/debian/rules

58 lines
1.5 KiB

12 years ago
#!/usr/bin/make -f
#export DH_VERBOSE=1
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
&& echo xz || echo bzip2)
debian/stamp-distrospecific:
dh_testdir
[ -e debian/stamp-distrospecific ] || \
ls -a1 debian/distrospecific | grep -v "^\.*$$" | \
tee debian/stamp-distrospecific | \
tr "\n" "\0" | (cd debian/distrospecific && xargs -r0 mv -t ../..)
12 years ago
clean:
dh_testdir
[ ! -e debian/stamp-distrospecific ] || \
cat debian/stamp-distrospecific | \
tr "\n" "\0" | xargs -r0 mv -t debian/distrospecific
rm -f debian/stamp-distrospecific
12 years ago
dh_clean
rm -rf build-stamp *.old debootstrap-dir
DEB_BUILD_ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)
build: debian/stamp-distrospecific build-stamp
12 years ago
build-stamp: desktop-$(DEB_BUILD_ARCH)
dh_clean
for seed in desktop; do \
package=kubuntu-$$seed; \
(printf "$$package:Depends="; perl -pe 's/\n/, /g' $$seed-$(DEB_BUILD_ARCH); echo) \
>> debian/$$package.substvars; \
(printf "$$package:Recommends="; perl -pe 's/\n/, /g' $$seed-recommends-$(DEB_BUILD_ARCH); echo) \
>> debian/$$package.substvars; \
done
touch $@
install: build-stamp
binary-arch: install
dh_testdir -a
dh_testroot -a
dh_installdocs -a
dh_installchangelogs -a
dh_compress -a
dh_fixperms -a
dh_installdeb -a
dh_gencontrol -a
dh_md5sums -a
dh_builddeb -a $(DEB_DH_BUILDDEB_ARGS)
12 years ago
binary-indep:
binary: binary-indep binary-arch
.PHONY: binary binary-arch binary-indep clean checkroot build