blob: abbd33b4b3350b51f40c68127ada624433802cb9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/make -f
HAVE_ICEDTEA = $(shell apt-cache show icedtea6-plugin 2>/dev/null | grep -q '^Version:' && echo y)
ifeq ($(HAVE_ICEDTEA),y)
binary-predeb/debathena-extra-software::
echo "debathena-java-plugin=icedtea6-plugin" >> debian/debathena-extra-software.substvars
endif
include /usr/share/cdbs/1/rules/debhelper.mk
|