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
DEB_DH_INSTALL_ARGS := --sourcedir=debian/tmp
#LDFLAGS += -lcares
#CPPFLAGS += -fPIC
override_dh_auto_configure:
autoreconf -fi
dh_auto_configure
override_dh_auto_build:
dh_auto_build --parallel
# don't actually run the test cases, they don't run well
# automatically and require network access
override_dh_auto_test:
true
override_dh_auto_install:
dh_auto_install
rm debian/turnserver/usr/bin/test_*
# force building in the pkgroot or it won't build
%:
dh $@ --builddirectory=.
|