20 lines
463 B
Plaintext
20 lines
463 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
|
||
|
# Uncomment this to turn on verbose mode.
|
||
|
#export DH_VERBOSE=1
|
||
|
|
||
|
%:
|
||
|
dh $@ --with autotools-dev --builddirectory=debian/build
|
||
|
|
||
|
override_dh_auto_configure:
|
||
|
dh_auto_configure -- $(shell dpkg-buildflags --export=configure)
|
||
|
|
||
|
.PHONY: override_dh_shlibdeps
|
||
|
override_dh_shlibdeps:
|
||
|
dh_shlibdeps -O--builddirectory=debian/build \
|
||
|
-l/usr/lib/x86_64-linux-gnu/hedera
|
||
|
|
||
|
.PHONY: override_dh_makeshlibs
|
||
|
override_dh_makeshlibs:
|
||
|
dh_makeshlibs --noscripts
|