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
|
#!/usr/bin/make -f
# -*- Makefile -*-
PERL ?= /usr/bin/perl
TMP := $(CURDIR)/debian/libmail-imapclient-perl
build: build-arch build-indep
build-arch:
build-indep: build-stamp
build-stamp:
dh_testdir
touch test.txt
$(PERL) Makefile.PL INSTALLDIRS=vendor
rm test.txt
$(MAKE)
$(MAKE) test
touch build-stamp
clean:
dh_testdir
dh_testroot
[ ! -f Makefile ] || $(MAKE) distclean
dh_clean build-stamp install-stamp Thread/Thread.grammar \
BodyStructure/Parse/Parse.grammar
install: install-stamp
install-stamp: build-stamp
dh_testdir
dh_testroot
$(MAKE) install PREFIX=$(TMP)/usr
rmdir --ignore-fail-on-non-empty --parents $(TMP)/usr/lib/perl5
touch install-stamp
binary: binary-arch binary-indep
binary-arch:
binary-indep: install-stamp
dh_testdir
dh_testroot
dh_installdocs README Todo
dh_installchangelogs Changes
dh_perl
dh_link
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
.PHONY: binary binary-arch binary-indep build build-arch build-indep clean
.PHONY: install
|