summaryrefslogtreecommitdiffstats
path: root/ubuntu/_base/metapackages/kubuntu-meta/debian/rules
blob: 4ab7baa9db92a2ba2d1bf83ab945bbf46c708bcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/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 ../..)

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
	dh_clean
	rm -rf build-stamp *.old debootstrap-dir

DEB_BUILD_ARCH:=$(shell dpkg-architecture -qDEB_BUILD_ARCH)

build: debian/stamp-distrospecific build-stamp
build-stamp:
	dh_clean

	for seed in desktop; do \
		package=kubuntu-$$seed-trinity; \
		echo -n > debian/$$package.substvars; \
		if [ -f $$seed-all ]; then \
			(printf "$$seed-all:Depends="; perl -pe 's/\n/, /g'  $$seed-all; echo) \
			>> debian/$$package.substvars; \
		fi; \
		if [ -f $$seed-recommends-all ]; then \
			(printf "$$seed-all:Recommends="; perl -pe 's/\n/, /g'  $$seed-recommends-all; echo) \
			>> debian/$$package.substvars; \
		fi; \
		if [ -f $$seed-suggests-all ]; then \
			(printf "$$seed-all:Suggests="; perl -pe 's/\n/, /g'  $$seed-suggests-all; echo) \
			>> debian/$$package.substvars; \
		fi; \
		if [ -f $$seed-$(DEB_BUILD_ARCH) ]; then \
			(printf "$$seed-arch:Depends="; perl -pe 's/\n/, /g'  $$seed-$(DEB_BUILD_ARCH); echo) \
			>> debian/$$package.substvars; \
		fi; \
		if [ -f $$seed-recommends-$(DEB_BUILD_ARCH) ]; then \
			(printf "$$seed-arch:Recommends="; perl -pe 's/\n/, /g'  $$seed-recommends-$(DEB_BUILD_ARCH); echo) \
			>> debian/$$package.substvars; \
		fi; \
		if [ -f $$seed-suggests-$(DEB_BUILD_ARCH) ]; then \
			(printf "$$seed-arch:Suggests="; perl -pe 's/\n/, /g'  $$seed-suggests-$(DEB_BUILD_ARCH); echo) \
			>> debian/$$package.substvars; \
		fi; \
	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)

binary-indep:

binary: binary-indep binary-arch

.PHONY: binary binary-arch binary-indep clean checkroot build