File: rules

package info (click to toggle)
libwww-doc 0.20020803
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,160 kB
  • ctags: 378
  • sloc: makefile: 38; sh: 1
file content (48 lines) | stat: -rwxr-xr-x 1,142 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
46
47
48
#!/usr/bin/make -f

#export DH_VERBOSE=1
export DH_COMPAT=3

configure:

build:

clean:
	rm -rf debian/libwww-doc

install:
	dh_testdir
	dh_testroot
	dh_clean -k
	dh_installdirs
	mkdir -p debian/libwww-doc/usr/share/doc/libwww-doc
	cp -a www.w3.org debian/libwww-doc/usr/share/doc/libwww-doc/html
	rm -f debian/libwww-doc/usr/share/doc/libwww-doc/html/robots.txt
	find debian/libwww-doc/usr/share/doc/libwww-doc -name Overview.html \
	| while read o; do \
	    d="`dirname $$o`"; i="$$d/index.html"; \
	    if test -f "$$i" && cmp "$$o" "$$i"; then \
	        rm -f "$$o"; ln -s "index.html" "$$o"; \
	    fi; \
	done
	e="debian/libwww-doc/usr/share/doc/libwww-doc/html/Library/Examples";\
	for f in `sed -n 's/^.*href="\([^"]*\.c\)".*$$/\1/p' $$e/index.html`; do \
	    ln -s ../../../../../libwww/examples/$$f $$e/; \
	done

binary-indep: build install

binary-arch: build install
	dh_testdir
	dh_testroot
	dh_installdocs 
	dh_installchangelogs
	dh_compress -X /html/
	dh_fixperms
	dh_installdeb
	dh_gencontrol
	dh_md5sums
	dh_builddeb

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