File: rules

package info (click to toggle)
uzbl 0.0.0~git.20100403-3
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 760 kB
  • ctags: 783
  • sloc: ansic: 3,952; python: 3,082; sh: 353; makefile: 127
file content (36 lines) | stat: -rwxr-xr-x 780 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
#!/usr/bin/make -f

include /usr/share/quilt/quilt.make

override_dh_auto_test:
	echo "Skipping tests..."

override_dh_compress:
	dh_compress -XCONTRIBUTING -XFAQ -XREADME -XTODO -Xconfig \
		    -Xcookies.sh -X.js -X.py
	
override_dh_auto_install:
	DESTDIR="$(CURDIR)/debian/uzbl" PREFIX="/usr" make install DOCDIR='$${DESTDIR}/usr/share/doc/uzbl'
	rm -f $(CURDIR)/debian/uzbl/usr/share/doc/uzbl/INSTALL
	# fix lintian warning
	chmod 644 $(CURDIR)/debian/uzbl/usr/share/uzbl/examples/data/scripts/follow.js

build: build-stamp
build-stamp: $(QUILT_STAMPFN)
	dh build
	touch build-stamp

clean: unpatch
	dh clean

install: build
install-stamp: patch-stamp
	dh install

binary-arch: install
	dh binary-arch

binary-indep: install
	dh binary-indep

binary: binary-arch binary-indep