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
|
#!/usr/bin/make -f
%:
dh $@
override_dh_auto_configure:
dh_auto_configure -- \
--enable-gtk-doc \
--disable-dmmp \
--enable-lvm2
override_dh_auto_build:
dh_auto_build
make -C po udisks.pot
override_dh_auto_test:
# don't run test suite on buildds
override_dh_makeshlibs:
dh_makeshlibs -Xusr/lib/polkit-1/
override_dh_auto_install:
dh_auto_install
# install Apport hook on Ubuntu
if dpkg-vendor --is ubuntu; then \
install -m 644 -D debian/local/apport-hook.py debian/udisks/usr/share/apport/package-hooks/udisks.py; \
fi
# don't install udisks-dm-export, we no longer need it
#rm -f debian/udisks/lib/udev/udisks-dm-export
|