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 49 50 51 52 53 54 55 56 57 58 59 60 61
|
#!/usr/bin/make -f
export DEB_BUILD_HARDENING=1
%:
dh $@ --with python2
override_dh_auto_configure:
# make sure docs are generated and the manifest is built
$(MAKE) locale
$(MAKE) -C doc/html all
python setup.py sdist --manifest-only
override_dh_auto_build:
# force usage of setup.py over Makefile
dh_auto_build --buildsystem python_distutils
override_dh_installchangelogs:
# install custom changelog
dh_installchangelogs doc/changelog.txt
ROOTDIR=$(CURDIR)/debian/linkchecker
LOCALEDIR=$(ROOTDIR)/usr/share/locale
ETCDIR=$(ROOTDIR)/etc
ROOTDIRWEB=$(CURDIR)/debian/linkchecker-web
HTMLDIRWEB=$(ROOTDIRWEB)/usr/share/linkchecker/lconline
CGIDIRWEB=$(ROOTDIRWEB)/usr/lib/cgi-bin
ETCDIRWEB=$(ROOTDIRWEB)/etc
override_dh_auto_install-arch:
dh_auto_install --buildsystem python_distutils
# install bash_completion script
install -m 644 config/linkchecker-completion $(ETCDIR)/bash_completion.d
# install .mo files
install -m 644 build/share/locale/de/LC_MESSAGES/linkchecker.mo $(LOCALEDIR)/de/LC_MESSAGES/
override_dh_auto_install-indep:
# install CGI files in web package
install -m 644 cgi-bin/lconline/*.html $(HTMLDIRWEB)
install -m 644 cgi-bin/lconline/*.de $(HTMLDIRWEB)
install -m 644 cgi-bin/lconline/*.en $(HTMLDIRWEB)
install -m 644 cgi-bin/lconline/*.js $(HTMLDIRWEB)
install -m 644 cgi-bin/lconline/*.css $(HTMLDIRWEB)
install -m 644 cgi-bin/lconline/*.ico $(HTMLDIRWEB)
install -m 755 cgi-bin/lc.wsgi $(CGIDIRWEB)
# apache configuration
install -m 644 config/linkchecker.apache2.conf $(ETCDIRWEB)/apache2/conf-available/linkchecker.conf
# clean generated files
override_dh_clean:
dh_clean doc/html/*.qch doc/html/*.qhc _LinkChecker_configdata.py
# do not run test suite when building
override_dh_auto_test:
# use xz for debian binary package compression
override_dh_builddeb:
dh_builddeb -- -Zxz
|