mirror of
https://github.com/Hopiu/linkchecker.git
synced 2026-03-18 15:00:28 +00:00
57 lines
1.8 KiB
Makefile
Executable file
57 lines
1.8 KiB
Makefile
Executable file
#!/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:
|
|
dh_auto_install --buildsystem python_distutils
|
|
# install system wide configuration files in etc
|
|
install -m 644 config/linkcheckerrc $(ETCDIR)/linkchecker/
|
|
# 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/
|
|
# 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:
|
|
|