2006-03-15 05:05:53 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
|
|
|
perl Makefile.PL
|
|
|
|
$(MAKE)
|
2006-05-02 09:03:52 +02:00
|
|
|
$(MAKE) test
|
2006-03-15 05:05:53 +01:00
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp
|
|
|
|
perl Makefile.PL
|
|
|
|
-$(MAKE) realclean
|
|
|
|
dh_clean
|
|
|
|
|
|
|
|
binary-arch: build
|
|
|
|
|
|
|
|
binary-indep: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
$(MAKE) pure_install INSTALLDIRS=vendor \
|
|
|
|
PREFIX=$(shell pwd)/debian/ikiwiki/$(shell perl -MConfig -e 'print $$Config{prefix}')
|
2006-05-15 18:00:34 +02:00
|
|
|
dh_install wikilist etc/ikiwiki
|
2006-03-15 05:05:53 +01:00
|
|
|
dh_installdocs html
|
2006-03-24 07:01:26 +01:00
|
|
|
dh_link usr/share/common-licenses/GPL usr/share/doc/ikiwiki/html/GPL
|
2006-03-15 05:05:53 +01:00
|
|
|
dh_installchangelogs
|
2006-03-24 07:01:26 +01:00
|
|
|
dh_compress -X html
|
2006-03-15 05:05:53 +01:00
|
|
|
dh_fixperms
|
|
|
|
dh_perl
|
|
|
|
dh_installdeb
|
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
2006-03-30 22:15:14 +02:00
|
|
|
# Not intended for use by anyone except the author.
|
|
|
|
announcedir:
|
2006-04-29 20:09:19 +02:00
|
|
|
@echo ${HOME}/src/ikiwiki/doc/news
|
2006-03-30 22:15:14 +02:00
|
|
|
|
2006-03-15 05:05:53 +01:00
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: build clean binary-indep binary-arch binary
|