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 30
|
#!/usr/bin/make -f
# -*- makefile -*-
export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS=hardening=+bindnow
include /usr/share/dpkg/buildflags.mk
include /usr/share/GNUstep/debian/config.mk
%:
dh $@
override_dh_auto_clean:
touch config.make
#$(MAKE) distclean
dh_auto_clean
override_dh_auto_configure:
./configure --disable-strip --with-gnustep --with-ssl=ssl
override_dh_auto_build:
dh_auto_build -- $(optim) $(verbose) OBJCFLAGS="$(CFLAGS)"
# This will make sure that the SOGo binary packages will always depend
# on the latest SOPE
override_dh_makeshlibs:
dh_makeshlibs -V
override_dh_link:
gsdh_gnustep
dh_link
|