2016-01-25 04:45:34 -06:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
|
|
|
DHFLAGS=--parallel
|
|
|
|
|
|
|
|
%:
|
|
|
|
dh $@ $(DHFLAGS)
|
|
|
|
|
|
|
|
override_dh_install:
|
2016-02-04 03:20:42 -06:00
|
|
|
rm -rfv debian/tmp/usr/lib/*/xed/plugin-loaders/*.la
|
|
|
|
rm -rfv debian/tmp/usr/lib/*/xed/plugins/*.la
|
2016-01-25 04:45:34 -06:00
|
|
|
dh_install --fail-missing
|
|
|
|
|
|
|
|
override_dh_auto_configure:
|
|
|
|
# upstream tarball is without configure. autogen.sh will create it
|
|
|
|
NOCONFIGURE=1 ./autogen.sh
|
|
|
|
dh_auto_configure $(DHFLAGS) -- \
|
|
|
|
--disable-silent-rules \
|
|
|
|
--libexecdir=/usr/lib/ \
|
2016-12-26 12:08:11 -06:00
|
|
|
--enable-gtk-doc
|
2016-01-25 04:45:34 -06:00
|
|
|
|
|
|
|
override_dh_installchangelogs:
|
|
|
|
dh_installchangelogs NEWS
|
|
|
|
|
|
|
|
override_dh_auto_test:
|
|
|
|
DEB_BUILD_OPTIONS=nocheck dh_auto_test
|
|
|
|
|
|
|
|
override_dh_strip:
|
2016-02-04 03:20:42 -06:00
|
|
|
dh_strip --dbg-package=xed-dbg
|
2016-01-25 04:45:34 -06:00
|
|
|
|
|
|
|
get-orig-source:
|
|
|
|
uscan --noconf --force-download --rename --download-current-version --destdir=..
|