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
|
#!/usr/bin/make -f
include /usr/share/quilt/quilt.make
get-orig-source:
uscan --verbose --force-download
build: build-stamp
build-stamp: $(QUILT_STAMPFN)
dh build
touch $@
clean: unpatch
dh $@
install: install-stamp
install-stamp: build-stamp
dh install --before dh_compress
dh_compress -Xsamples
dh install --after dh_compress
chmod -x $(CURDIR)/debian/libsyntax-highlight-engine-kate-perl/usr/share/perl5/Syntax/Highlight/Engine/Kate.pod
chmod -x $(CURDIR)/debian/libsyntax-highlight-engine-kate-perl/usr/share/doc/libsyntax-highlight-engine-kate-perl/examples/samples/*
touch $@
binary-arch:
binary-indep: install
dh $@
binary: binary-arch binary-indep
.PHONY: binary binary-arch binary-indep install clean build
|