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
|
#!/usr/bin/make -f
DEB_PYTHON_SYSTEM:=pycentral
DEB_DH_INSTALLCHANGELOGS_ARGS:=doc/changelog.txt
# workaround for Debian bug #486848
binary-arch binary-indep: install-arch install-indep
common-install-arch::
$(MAKE) locale
$(MAKE) -C doc/html all
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/python-distutils.mk
ROOTDIR=$(CURDIR)/debian/linkchecker
DOCDIR=$(ROOTDIR)/usr/share/doc/linkchecker
SHAREDIR=$(ROOTDIR)/usr/share/linkchecker
HTMLDIR=$(SHAREDIR)/lconline
CGIDIR=$(ROOTDIR)/usr/lib/cgi-bin
LOCALEDIR=$(ROOTDIR)/usr/share/locale
ETCDIR=$(ROOTDIR)/etc
common-configure-arch::
python setup.py sdist --manifest-only
common-install-arch::
# install system wide configuration files in etc
install -m 644 config/linkcheckerrc $(ETCDIR)/linkchecker/
install -m 644 config/logging.conf $(ETCDIR)/linkchecker/
# install CGI files
install -m 644 cgi-bin/lconline/*.html $(HTMLDIR)
install -m 644 cgi-bin/lconline/*.de $(HTMLDIR)
install -m 644 cgi-bin/lconline/*.en $(HTMLDIR)
install -m 644 cgi-bin/lconline/*.js $(HTMLDIR)
install -m 644 cgi-bin/lconline/*.css $(HTMLDIR)
install -m 755 cgi-bin/lc.cgi $(CGIDIR)
# 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/
# apache configuration
install -m 644 config/linkchecker.apache2.conf $(ETCDIR)/apache2/conf.d/linkchecker
install/linkchecker::
sed -i '1s,#!/usr/bin/python2\..,#!/usr/bin/python,' $(CURDIR)/debian/tmp/usr/bin/linkchecker
install/linkchecker-gui::
sed -i '1s,#!/usr/bin/python2\..,#!/usr/bin/python,' $(CURDIR)/debian/tmp/usr/bin/linkchecker-gui
# clean generated files
clean::
rm -f doc/html/*.qch doc/html/*.qhc
rm -f _LinkChecker_configdata.py
|