1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
#!/usr/bin/make -f
%:
dh $@ --with=autotools_dev,autoreconf,python2 --parallel
override_dh_auto_configure:
dh_auto_configure -- --with-liblua --with-liblinear --enable-ipv6
override_dh_auto_test:
override_dh_auto_install:
dh_auto_install
mv debian/tmp/usr/share/man/pt_PT debian/tmp/usr/share/man/pt
override_dh_autoreconf:
dh_autoreconf autoconf
override_dh_install:
dh_install --fail-missing -Xuninstall_zenmap -Xca-bundle.crt
rm -f debian/zenmap/usr/lib/python2.7/*/ndiff.py
|