1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/ant.mk
JAVA_HOME := /usr/lib/jvm/java-gcj/
ANT_HOME := /usr/share/ant
# no junit at the moment
DEB_JARS := #junit ant-junit
DEB_ANT_BUILD_TARGET := jar javadoc
install/libcommons-io-java::
dh_install target/commons-io-$(DEB_UPSTREAM_VERSION).jar usr/share/java/
dh_link usr/share/java/commons-io-$(DEB_UPSTREAM_VERSION).jar usr/share/java/commons-io.jar
get-orig-source:
-uscan --upstream-version 0 --rename
|