File: rules

package info (click to toggle)
ikiwiki 2.53.6
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 5,420 kB
  • ctags: 740
  • sloc: perl: 11,581; python: 353; sh: 99; makefile: 83
file content (45 lines) | stat: -rwxr-xr-x 904 bytes parent folder | download
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
#!/usr/bin/make -f

build: build-stamp
build-stamp:
	dh_testdir
	perl Makefile.PL PREFIX=/usr INSTALLDIRS=vendor
	$(MAKE) -C po
	$(MAKE)
	$(MAKE) test
	touch build-stamp

clean:
	dh_testdir
	dh_testroot
	rm -f build-stamp
	perl Makefile.PL
	if [ -e Makefile ]; then $(MAKE) realclean; fi
	dh_clean

binary-arch: build

binary-indep: build
	dh_testdir
	dh_testroot
	dh_clean -k
	$(MAKE) pure_install DESTDIR=$(shell pwd)/debian/ikiwiki
	dh_install wikilist etc/ikiwiki
	dh_installdocs html
	dh_installexamples doc/examples/*
	dh_link usr/share/common-licenses/GPL-2 usr/share/doc/ikiwiki/html/GPL
	dh_installchangelogs
	dh_compress -X html
	dh_fixperms
	dh_perl
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

# Not intended for use by anyone except the author.
announcedir:
	@echo ${HOME}/src/ikiwiki/doc/news

binary: binary-indep binary-arch
.PHONY: build clean binary-indep binary-arch binary