File: rules

package info (click to toggle)
guice 4.2.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 9,184 kB
  • sloc: xml: 105,053; java: 66,514; sh: 37; jsp: 12; makefile: 10
file content (18 lines) | stat: -rwxr-xr-x 595 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/usr/bin/make -f

export JAVA_HOME=/usr/lib/jvm/default-java

# Variables for the Built-Using field in the control file
ASM_VERSION   := $(shell dpkg-query -f '$${source:Version}' --show libasm-java)
CGLIB_VERSION := $(shell dpkg-query -f '$${source:Version}' --show libcglib-java)

%:
	dh $@ --buildsystem=maven

override_dh_auto_install:
	dh_auto_install

	mh_installjar -plibguice-java --java-lib --usj-name=guice-no-aop --classifier=no_aop core/pom.xml core/target/guice-*-no_aop.jar

override_dh_gencontrol:
	dh_gencontrol -- -Vasm:Version=${ASM_VERSION} -Vcglib:Version=${CGLIB_VERSION}