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
|
#!/usr/bin/make -f
# -*- makefile -*-
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
# This has to be exported to make some magic below work.
export DH_OPTIONS
export DEB_BUILD_MAINT_OPTIONS = hardening=+all
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
%:
dh $@
sonic/Sonic.class: Sonic.java
[ -L sonic ] || ln -s . sonic
javac -source 1.5 -target 1.5 $<
sonic.jar: sonic/Sonic.class
jar -cf $@ $^
override_dh_auto_build: sonic.jar
dh_auto_build
override_dh_auto_clean:
dh_auto_clean
rm -f Sonic.class
rm -f sonic.jar
override_dh_auto_install:
mkdir -p $(CURDIR)/debian/tmp
$(MAKE) install DESTDIR=$(CURDIR)/debian/tmp LIBDIR=/usr/lib/$(DEB_HOST_MULTIARCH)
mkdir -p $(CURDIR)/debian/tmp/usr/share/java
cp sonic.jar $(CURDIR)/debian/tmp/usr/share/java
|