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
|
#!/usr/bin/make -f
# -*- makefile -*-
#DH_VERBOSE=1
%:
dh $@ --with python2
override_dh_auto_install:
python setup.py install --root=debian/xmds2 --install-layout=deb
python debian/fix-cheetah-build-str.py
override_dh_auto_test:
ifeq (,$(filter nocheck,$(DEB_BUILD_OPTIONS)))
debian/tests/run-tests -b
endif
override_dh_auto_clean:
cd xpdeint; waf/waf-light configure
make clean
dh_clean
JSDIR = /usr/share/javascript
INSTDIR = $(CURDIR)/debian/xmds2-doc
DOCDIR = $(INSTDIR)/usr/share/doc/xmds2
override_dh_installdocs:
dh_installdocs
# Fix Lintian error privacy-breach-may-use-debian-package
sed -i 's|http://cdn.mathjax.org/mathjax/latest/|file:///usr/share/javascript/mathjax/|g;s|http://www.xmds.org/|file:///usr/share/doc/xmds2/|g' $(DOCDIR)/*.html $(DOCDIR)/_static/*.js
for i in underscore jquery ; do \
ln -fs $(JSDIR)/$$i/$$i.js $$(find $(INSTDIR) -name $$i.js) ; \
done
CHEETAH_MAJOR_VERSION = $(shell dpkg -s python-cheetah | grep ^Version: | cut -f2 -d\ | cut -f1 -d.)
override_dh_gencontrol:
dh_gencontrol -- -VCheetah-Depends="python-cheetah (>= $(CHEETAH_MAJOR_VERSION)), python-cheetah (<< $$(($(CHEETAH_MAJOR_VERSION) + 1)))"
|