2006-03-15 05:05:53 +01:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
build: build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
2006-11-20 23:12:43 +01:00
|
|
|
perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
|
2008-03-21 21:32:23 +01:00
|
|
|
$(MAKE) -C po
|
2008-02-24 21:42:43 +01:00
|
|
|
$(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
|
2007-07-16 01:43:16 +02:00
|
|
|
if [ -e Makefile ]; then $(MAKE) realclean; fi
|
2006-03-15 05:05:53 +01:00
|
|
|
dh_clean
|
|
|
|
|
|
|
|
binary-arch: build
|
|
|
|
|
|
|
|
binary-indep: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
2006-11-20 23:12:43 +01:00
|
|
|
$(MAKE) pure_install DESTDIR=$(shell pwd)/debian/ikiwiki
|
2006-03-15 05:05:53 +01:00
|
|
|
dh_installdocs html
|
2006-11-20 23:12:43 +01:00
|
|
|
dh_installexamples doc/examples/*
|
2007-09-11 02:25:04 +02:00
|
|
|
dh_link usr/share/common-licenses/GPL-2 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
|