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 44 45 46
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DEB_HOST_MULTIARCH ?= dpkg-architecture -qDEB_HOST_MULTIARCH
CFLAGS += $(CPPFLAGS)
%:
dh $@ --without autoreconf
override_dh_auto_configure:
dh_auto_configure -- --x-libraries=/usr/lib/$(DEB_HOST_MULTIARCH)
override_dh_auto_test:
ifeq (,$(findstring nocheck, $(DEB_BUILD_OPTIONS)))
#it takes too long time.
-dh_auto_test
endif
override_dh_auto_install:
dh_auto_install --no-parallel
override_dh_installchangelogs:
dh_installchangelogs CHANGES.html
override_dh_install:
cd tcl/test && sh ./remove.com
dh_install -Xtest-output-
override_dh_compress:
dh_compress -X.tcl -Xvalidate -Xtest-all-template1
dfsg-orig:
cd ..; \
TAR_NAME=`ls ns2_2.*.orig.tar.gz`; \
tar xzf $$TAR_NAME; \
rm ns-2.*/indep-utils/model-gen/crl_to_pcap; \
rm ns-2.*/indep-utils/model-gen/output_format.pdf; \
rm ns-2.*/indep-utils/model-gen/trace_processing.pdf; \
rm ns-2.*/wpan/WPAN_ZBR_pub.pdf; \
chmod a-x ns-2.*/tcl/test/test-sack; \
tar Jcf `echo $$TAR_NAME| sed s/.orig.tar.gz/+dfsg.orig.tar.xz/g` ns-2.*/; \
rm -rf ns-2.*
|