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
|
#!/usr/bin/make -f
include /usr/share/dpkg/pkg-info.mk
export SETUPTOOLS_SCM_PRETEND_VERSION=$(DEB_VERSION_UPSTREAM)
%:
dh $@ --with python3
override_dh_auto_configure:
# make sure docs are generated and the manifest is built
$(MAKE) locale
dh_auto_configure --buildsystem pybuild
override_dh_auto_build:
# force usage of setup.py over Makefile
dh_auto_build --buildsystem pybuild
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 pybuild
# install bash_completion script
install -m 644 config/linkchecker-completion $(ROOTDIR)/usr/share/bash-completion/completions/
override_dh_auto_install-indep:
dh_auto_install --buildsystem pybuild
# 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-web.conf
# clean generated files
#
# this also skips the upstream `make clean` target which shells out to
# git instead of properly cleaning up its own files
override_dh_auto_clean:
dh_auto_clean --buildsystem pybuild
dh_clean doc/html/*.qch doc/html/*.qhc _LinkChecker_configdata.py
# do not run test suite when building
override_dh_auto_test:
|