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 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/usr/bin/make -f
# -*- makefile -*-
name = globus-common
export DEB_BUILD_MAINT_OPTIONS = hardening=+bindnow
export DEB_LDFLAGS_MAINT_APPEND = -Wl,-z,defs
INSTALLDIR = debian/tmp
_docdir = /usr/share/doc/lib$(name)-dev
perl_vendorlib = $(shell eval "`perl -V:installvendorlib`"; echo $$installvendorlib)
%:
dh $@
override_dh_auto_configure:
GLOBUS_VERSION=6.2 \
SH=/bin/sh \
dh_auto_configure -- \
--disable-static \
--includedir=/usr/include/globus \
--libexecdir=/usr/share/globus \
--docdir=$(_docdir) \
--with-perlmoduledir=$(perl_vendorlib) \
--with-backward-compatibility-hack
override_dh_auto_test:
dh_auto_test -- NO_EXTERNAL_NET=1
override_dh_auto_install:
dh_auto_install
# Remove libtool archives (.la files)
rm $(INSTALLDIR)/usr/lib/*/*.la
# Remove environment scripts
rm $(INSTALLDIR)/usr/share/globus-user-env.csh
rm $(INSTALLDIR)/usr/share/globus-user-env.sh
# Remove installed license file
rm $(INSTALLDIR)$(_docdir)/GLOBUS_LICENSE
|