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
|