1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
#!/usr/bin/make -f
export CLASSPATH := /usr/share/java/asm.jar:/usr/share/java/asm-commons.jar:/usr/share/java/maven-plugin-api.jar
# Variable for the Built-Using field in the control file
ASM_VERSION := $(shell dpkg-query -f '$${source:Version}' --show libasm-java)
%:
dh $@ --with maven-repo-helper
override_dh_gencontrol:
dh_gencontrol -- -Vasm:Version=${ASM_VERSION}
override_dh_auto_clean:
dh_auto_clean
dh_auto_build -- clean
get-orig-source:
uscan --download-current-version --force-download
|