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
|
#!/usr/bin/make -f
%:
dh $@ --sourcedirectory=doc
override_dh_auto_clean:
$(MAKE) -C doc clean
get-orig-source:
$(MAKE) -C doc update
#install::
# TODO - move the files
# cp $(docdir)/constitution.1.3.txt ../constitution.txt
# cp $(docdir)/social-contract.txt ../social-contract.txt
binary-indep/doc-debian::
dpkg-distaddfile constitution.txt byhand -
dpkg-distaddfile social-contract.txt byhand -
# Code disabled: There already is a mechanism (which one?)
# synching files over to f.d.o/debian/doc although not exactly the
# same (it retains page footers, which this one doesn't)
#
# cp $(docdir)/debian-manifesto ../
# dpkg-distaddfile debian-manifesto byhand -
# ( cd $(docdir) && ls *.txt) | \
# grep -v constitution | \
# grep -v social-contract | \
# while read txtfile; do \
# cp $(docdir)/$$txtfile ../ ; \
# dpkg-distaddfile $$txtfile byhand - ; \
# done
|