1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
#!/usr/bin/make -f
# debian/rules for libcommons-jexl-java (uses CDBS)
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
include /usr/share/cdbs/1/rules/debhelper.mk
include /usr/share/cdbs/1/class/ant.mk
JAVA_HOME := /usr/lib/jvm/default-java/
DEB_JARS := junit commons-logging
DEB_ANT_BUILD_TARGET := jar
#DEB_ANT_TEST_TARGET := test
ANT_OPTS := -Dant.build.javac.source=1.4 -Dant.build.javac.target=1.4
PACKAGE := commons-jexl
MAVEN_REPO := http://repo1.maven.org/maven2
LIBRARY=commons-jexl
install/libcommons-jexl-java::
ln -s commons-jexl-$(DEB_UPSTREAM_VERSION).jar debian/libcommons-jexl-java/usr/share/java/commons-jexl.jar
binary-post-install/lib$(PACKAGE)-java::
mh_installpoms -plib$(PACKAGE)-java
mh_installjar -plib$(PACKAGE)-java -l debian/poms/$(PACKAGE).pom target/$(PACKAGE)-$(DEB_UPSTREAM_VERSION).jar
get-orig-source::
uscan --verbose --force-download --rename
get-orig-pom:
mkdir -p debian/poms
wget -U NoSuchBrowser/1.0 -O debian/poms/$(PACKAGE).pom \
$(MAVEN_REPO)/commons-jexl/$(PACKAGE)/$(DEB_UPSTREAM_VERSION)/$(PACKAGE)-$(DEB_UPSTREAM_VERSION).pom
|