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
export DEB_BUILD_MAINT_OPTIONS=hardening=+all
SCONS_BUILD_FLAGS = --libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
--enable-tests \
--disable-libunwind
ifneq (,$(filter sparc64,$(DEB_HOST_ARCH)))
SCONS_BUILD_FLAGS += --disable-openfec
endif
%:
dh $@
override_dh_auto_build:
scons ${SCONS_BUILD_FLAGS}
override_dh_auto_test:
scons ${SCONS_BUILD_FLAGS} test/roc_core
override_dh_auto_install:
scons ${SCONS_BUILD_FLAGS} install DESTDIR=debian/tmp
# Don't install the symlink "libroc.so.0" -> "libroc.so.0.X"
# This symlink is undesirable since the soname is not "libroc.so.0"
# but "libroc.so.0.X"; and usually versions 0.X break the API.
find debian/tmp/ -name 'libroc.so.0' -delete -print
|