diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-04 11:42:38 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-04 11:42:38 -0600 |
commit | 61508ec3ffdf90969c5694f5cf65732dd46cbcfb (patch) | |
tree | a360c2b36e0411df5d0d0a702bd52efa8499faa9 /ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules | |
parent | 66d1236e2c6608c79132fe37bec6aa393a7aba89 (diff) | |
download | tde-packaging-61508ec3ffdf90969c5694f5cf65732dd46cbcfb.tar.gz tde-packaging-61508ec3ffdf90969c5694f5cf65732dd46cbcfb.zip |
Split apt sources package from keyring package
This relates to Bug 649
Diffstat (limited to 'ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules')
-rwxr-xr-x | ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules b/ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules new file mode 100755 index 000000000..311f254a1 --- /dev/null +++ b/ubuntu/maverick/metapackages/trinity-apt-archive/debian/rules @@ -0,0 +1,29 @@ +#!/usr/bin/make -f + +include /usr/share/cdbs/1/rules/debhelper.mk + +VERSION := $(shell dpkg-parsechangelog | grep ^Version: | cut -d' ' -f2) +DISTRIBUTION := $(shell dpkg-parsechangelog | grep ^Distribution: | cut -d' ' -f2) + +DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \ + && echo xz || echo bzip2) + +pre-build:: debian/stamp-distrospecific + +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 + +binary-install/trinity-apt-archive:: + dh_testdir + sed -i 's|ubuntu [^ ]* main|ubuntu ${DISTRIBUTION} main|g' debian/$(cdbs_curpkg)/etc/apt/sources.list.d/trinity.list |