1999-09-05 05:50:40 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
2000-04-21 08:55:46 +00:00
|
|
|
build: build-stamp
|
1999-09-05 06:35:38 +00:00
|
|
|
build-stamp:
|
|
|
|
|
dh_testdir
|
2002-06-24 17:22:33 +00:00
|
|
|
perl Makefile.PL
|
2000-04-22 05:47:47 +00:00
|
|
|
$(MAKE)
|
2003-05-14 22:14:29 +00:00
|
|
|
# simple smoke test
|
|
|
|
|
./alien.pl -V
|
1999-09-05 05:50:40 +00:00
|
|
|
touch build-stamp
|
|
|
|
|
|
2000-04-21 08:55:46 +00:00
|
|
|
clean:
|
1999-09-05 06:35:38 +00:00
|
|
|
dh_testdir
|
|
|
|
|
dh_testroot
|
|
|
|
|
rm -f build-stamp
|
2000-04-23 03:47:44 +00:00
|
|
|
perl Makefile.PL
|
2007-10-19 20:32:58 -04:00
|
|
|
if [ -e Makefile ]; then $(MAKE) realclean; fi
|
1999-09-05 06:35:38 +00:00
|
|
|
dh_clean
|
1999-09-05 05:50:40 +00:00
|
|
|
|
2000-04-21 08:55:46 +00:00
|
|
|
binary-arch: build
|
1999-09-05 05:50:40 +00:00
|
|
|
|
2000-04-21 08:55:46 +00:00
|
|
|
binary-indep: build
|
1999-09-05 06:35:38 +00:00
|
|
|
dh_testdir
|
|
|
|
|
dh_testroot
|
2000-04-22 05:47:47 +00:00
|
|
|
dh_clean -k
|
2002-06-24 17:22:33 +00:00
|
|
|
$(MAKE) pure_install INSTALLDIRS=vendor \
|
|
|
|
|
PREFIX=$(shell pwd)/debian/alien/$(shell perl -MConfig -e 'print $$Config{prefix}') \
|
|
|
|
|
VARPREFIX=$(shell pwd)/debian/alien
|
|
|
|
|
# Why does it make this empty directory? Sigh.
|
|
|
|
|
rm -rf debian/alien/usr/lib
|
|
|
|
|
dh_installdocs README gendiff.txt
|
|
|
|
|
dh_installexamples
|
1999-09-05 06:35:38 +00:00
|
|
|
dh_installchangelogs
|
|
|
|
|
dh_compress
|
|
|
|
|
dh_fixperms
|
2000-11-21 23:53:02 +00:00
|
|
|
dh_perl
|
1999-09-05 06:35:38 +00:00
|
|
|
dh_installdeb
|
|
|
|
|
dh_gencontrol
|
|
|
|
|
dh_md5sums
|
|
|
|
|
dh_builddeb
|
|
|
|
|
|
2006-03-30 20:15:44 +00:00
|
|
|
# Not intended for use by anyone except the author.
|
|
|
|
|
announcedir:
|
|
|
|
|
@echo ${HOME}/src/joeywiki/code/alien/news
|
2002-06-24 17:22:33 +00:00
|
|
|
|
1999-09-05 05:50:40 +00:00
|
|
|
binary: binary-indep binary-arch
|
1999-09-05 06:35:38 +00:00
|
|
|
.PHONY: build clean binary-indep binary-arch binary
|