mirror of
https://github.com/haiwen/libsearpc.git
synced 2025-08-14 10:45:18 +00:00
15 lines
344 B
Plaintext
15 lines
344 B
Plaintext
|
#!/usr/bin/make -f
|
||
|
# -*- makefile -*-
|
||
|
|
||
|
%:
|
||
|
dh $@ --with python2 --with autotools_dev --builddirectory=build
|
||
|
|
||
|
override_dh_auto_configure:
|
||
|
./autogen.sh
|
||
|
dh_auto_configure -- --disable-compile-demo
|
||
|
|
||
|
override_dh_strip:
|
||
|
# emptying the dependency_libs field in .la files
|
||
|
sed -i "/dependency_libs/ s/'.*'/''/" `find debian/ -name '*.la'`
|
||
|
dh_strip
|