You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
969 B
31 lines
969 B
13 years ago
|
#!/usr/bin/make -f
|
||
|
|
||
|
include /usr/share/cdbs/1/rules/debhelper.mk
|
||
11 years ago
|
#include /usr/share/cdbs/1/rules/patchsys-quilt.mk
|
||
13 years ago
|
include /usr/share/cdbs/1/rules/utils.mk
|
||
|
include /usr/share/cdbs/1/class/gnome.mk
|
||
|
|
||
10 years ago
|
debian/stamp-autoreconf:
|
||
|
dh_testdir
|
||
13 years ago
|
cp -Rp /usr/share/aclocal/libtool.m4 libtool.m4.in
|
||
9 years ago
|
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
|
||
13 years ago
|
cp -Rp /usr/share/libtool/config/ltmain.sh ltmain.sh
|
||
9 years ago
|
endif
|
||
|
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
|
||
|
cp -Rp /usr/share/libtool/build-aux/ltmain.sh ltmain.sh
|
||
|
endif
|
||
10 years ago
|
autoreconf -vi && \
|
||
|
touch $@
|
||
|
|
||
|
makebuilddir:: debian/stamp-autoreconf
|
||
|
dh_testdir
|
||
13 years ago
|
|
||
13 years ago
|
libart-2.0-N := $(shell sed -rn 's/^Package:[[:space:]]*(libart-2\.0-[0-9]+)[[:space:]]*$$/\1/p' debian/control)
|
||
|
|
||
|
GNOME_MODULE := libart_lgpl
|
||
|
|
||
|
DEB_DH_MAKESHLIBS_ARGS_$(libart-2.0-N) += -V '$(libart-2.0-N)(>= 2.3.18)'
|
||
|
|
||
12 years ago
|
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||
|
&& echo xz || echo bzip2)
|