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
|
#! /usr/bin/make -f
include /usr/share/quilt/quilt.make
package = libauthen-sasl-cyrus-perl
# Set the user environment variable required by the test suite.
export USER=testuser
build: build-arch build-indep
build-arch: build-stamp
build-indep:
build-stamp: $(QUILT_STAMPFN)
dh build --before dh_auto_configure
dh_auto_configure -- LIBS="-lsasl2" DEFINE="-DSASL2"
dh build --remaining
touch $@
install binary binary-arch binary-indep:
dh $@ --until dh_fixperms
chmod 644 debian/$(package)/usr/lib/perl5/Authen/SASL/Cyrus.pod
dh $@ --remaining
clean: unpatch
dh $@
.PHONY: binary binary-arch binary-indep build build-arch build-indep clean
.PHONY: install
|