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
# Uncomment this to turn on verbose mode.
# export DH_VERBOSE=1
include /usr/share/dpkg/architecture.mk
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
%:
dh $@
override_dh_auto_clean:
# work around some stupid logic in top level makefile
rm -f src/*.o
rm -f pam_radius_auth.so
rm -f Make.inc
override_dh_auto_configure:
./configure --prefix=$(CURDIR)/debian --build=$(DEB_BUILD_GNU_TYPE) --host=$(DEB_HOST_GNU_TYPE)
# Skip
override_dh_auto_install:
override_dh_fixperms:
dh_fixperms
chmod 600 debian/libpam-radius-auth/etc/pam_radius_auth.conf
|