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
|
#!/usr/bin/make -f
# debian/rules file for the Debian/GNU Linux gnupod-tools package
# Copyright 2003 by Quôc Peyrot <chojin@debian.org>
# Copyright 2005 by Brian Nelson <pyro@debian.org>
# Copyright 2008 by Raphael Bossek <bossekr@debian.org>
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
ARCHIVE=$(shell ls -1 gnupod-*.tgz)
SRCDIR=$(shell ls -1 gnupod-*.tgz | sed -e 's,\.tgz,,g')
VERSION:=$(shell dpkg-parsechangelog | grep '^Version:' | sed -e 's/^Version: //g;s/-.*//g')
$(SRCDIR)/configure: $(ARCHIVE)
tar -xzf $(ARCHIVE)
test -d $(SRCDIR)
sh $(CURDIR)/debian/maintenance/01patch_rename.sh $(SRCDIR) $(VERSION)
quilt --quiltrc debian/quiltrc push -a
$(SRCDIR)/config.status: $(SRCDIR)/configure
dh_testdir
cd $(SRCDIR) && ./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
build: build-indep
build-indep: build-indep-stamp
build-indep-stamp: $(SRCDIR)/config.status
dh_testdir
clean:
quilt --quiltrc debian/quiltrc pop -a || true
$(RM) -r .pc
dh_testdir
rm -rf $(SRCDIR)
rm -f build-indep-stamp config-stamp
dh_clean
install: install-indep
install-indep:
dh_testdir
dh_testroot
dh_prep -i
dh_installdirs -i
$(MAKE) -C $(SRCDIR) install DESTDIR=$(CURDIR)/debian/gnupod-tools
: # Drop the .pl from each manpage and executable name
rename 's/\.pl//' $(CURDIR)/debian/gnupod-tools/usr/bin/*.pl
rename 's/\.pl//' $(CURDIR)/debian/gnupod-tools/usr/share/man/man1/*.gz
rm -f debian/gnupod-tools/usr/share/info/dir*
binary-common:
dh_testdir
dh_testroot
dh_installdocs $(SRCDIR)/TODO $(SRCDIR)/doc/fdl.texi $(SRCDIR)/doc/version.texi $(SRCDIR)/doc/gnupod.texi $(SRCDIR)/doc/gnupod.html $(SRCDIR)/doc/gnupodrc.example
dh_installexamples $(SRCDIR)/doc/gnutunesdb.example
dh_installinfo $(SRCDIR)/doc/gnupod.info
dh_installman
dh_installchangelogs $(SRCDIR)/CHANGES
dh_link
dh_compress
dh_fixperms
dh_installdeb
dh_perl
dh_gencontrol
dh_md5sums
dh_builddeb
build-arch: build
binary-arch: build
binary-indep: build-indep install-indep
$(MAKE) -f debian/rules DH_OPTIONS=-i binary-common
binary: binary-arch binary-indep
.PHONY: build clean binary-indep binary install install-indep
|