Codebase list lwjgl / c6d1022 debian / rules
c6d1022

Tree @c6d1022 (Download .tar.gz)

rules @c6d1022

ad084d3
 
ded68e0
 
63f2eff
a783cd4
3bef758
 
517f15b
 
3bef758
7a75996
ad084d3
 
bcd79cd
ad084d3
 
c6d1022
ad084d3
 
3e4a4c9
ad084d3
 
 
#!/usr/bin/make -f

DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
export JAVA_HOME=/usr/lib/jvm/java-1.8.0-openjdk-$(DEB_HOST_ARCH)
export PATH:=$(JAVA_HOME)/bin:$(PATH)

# NOTE: jutils is explicitly included here (without a depends in our control
# file) because jinput.jar lacks jutils in its own "Class-Path" (bug #626002)
# 2016-04-09: Although #626002 appears to be fixed jutils.jar is still required
# on the CLASSPATH.
export CLASSPATH=/usr/share/java/jinput.jar:/usr/share/java/jutils.jar
export DEB_BUILD_MAINT_OPTIONS = hardening=+all

%:
	dh $@ --with javahelper

override_dh_auto_build:
	dh_auto_build -- jars compile_native javadoc

override_dh_auto_install:
	jh_installjavadoc -pliblwjgl-java-doc doc/javadoc

override_dh_auto_clean:
	find src/native/ -name '*org_lwjgl_*.h' -delete