1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
#! /usr/bin/make -f
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
%:
dh $@ --builddirectory=build
override_dh_auto_configure:
dh_auto_configure -- --localstatedir=/var/lib
override_dh_install:
dh_missing --fail-missing
dh_install
mv debian/mlocate/usr/bin/locate debian/mlocate/usr/bin/mlocate
mv debian/mlocate/usr/bin/updatedb debian/mlocate/usr/bin/updatedb.mlocate
mv debian/mlocate/usr/share/man/man1/locate.1 debian/mlocate/usr/share/man/man1/mlocate.1
mv debian/mlocate/usr/share/man/man8/updatedb.8 debian/mlocate/usr/share/man/man8/updatedb.mlocate.8
|