blob: b9a6fdd109e0504eb46db0e63797eb0e9a185d15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/make -f
export DPKG_GENSYMBOLS_CHECK_LEVEL = 4
%:
dh $@ --with autoreconf
override_dh_autoreconf:
NOCONFIGURE=1 dh_autoreconf ./autogen.sh
override_dh_makeshlibs:
dh_makeshlibs -plibido3-0.1-0 -V'libido3-0.1-0 (>= 12.10.0)'
dh_makeshlibs -Nlibido3-0.1-0
override_dh_install:
find debian/tmp/usr/lib -name *.la -delete
dh_install --fail-missing
override_dh_auto_test:
# Tests temporarily disabled: needs work to fix X initialization issues.
|