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
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
PACKAGE = chemical-mime-data
%:
dh $@ --parallel
override_dh_autoreconf:
intltoolize -c -f
dh_autoreconf
override_dh_auto_configure:
dh_auto_configure -- \
--disable-nls \
--without-kde-mime \
--disable-update-database --disable-convert \
RSVG="/usr/bin/rsvg-convert" \
XMLLINT_FLAGS="--nonet" \
XSLTPROC_FLAGS="--nonet"
override_dh_installchangelogs:
dh_installchangelogs NEWS
override_dh_clean:
dh_clean intltool-*.in po/Makefile.in.in
|