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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
#!/usr/bin/make -f
# -*- makefile -*-
name = voms-api-java
version = 3.0.3
configure: configure-stamp
configure-stamp:
dh_testdir
mh_patchpom -plib$(name)-java -k pom.xml
touch $@
build: build-arch build-indep
build-arch:
build-indep: build-stamp
build-stamp: configure-stamp
dh_testdir
mvn-debian package javadoc:aggregate
touch $@
clean:
dh_testdir
dh_testroot
rm -rf target
[ -r pom.xml.save ] && mv pom.xml.save pom.xml || :
rm -f build-stamp configure-stamp
mh_clean
dh_clean
install: build-stamp
dh_testdir
dh_testroot
dh_prep
binary: binary-arch binary-indep
binary-arch:
binary-indep: install
dh_testdir
dh_testroot
dh_installdocs
dh_installchangelogs
mh_installjar -plib$(name)-java pom.xml -l target/$(name)-$(version).jar
mh_installpom -plib$(name)-java pom.xml
dh_link
dh_compress
dh_fixperms
dh_installdeb
dh_gencontrol
dh_md5sums
dh_builddeb
.PHONY: build build-arch build-indep binary binary-arch binary-indep clean configure install
|