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 63 64
|
#!/usr/bin/make -f
#
# Sample debian/rules that uses javahelper.
# This file was generated by jh_makepkg and may be used
# without restriction. It was inspired by the dh-make
# sample debian/rules
# Uncomment this to turn on verbose mode.
#export DH_VERBOSE=1
export JAVA_HOME=/usr/lib/jvm/java-gcj
# Put depended upon jars in here
# export CLASSPATH=
build: build-arch-stamp build-indep-stamp
build-arch: build-arch-stamp
build-arch-stamp:
dh_testdir
touch $@
build-indep: build-indep-stamp
build-indep-stamp:
dh_testdir
# Build the package
jh_build trilead-ssh2.jar src
touch $@
clean:
dh_testdir
dh_testroot
jh_build --clean
dh_clean
rm -f build-arch-stamp build-indep-stamp trilead-ssh2.jar
install-indep: build-indep
dh_testdir
dh_testroot
dh_clean -k
dh_installdirs
binary-arch: build-arch
# Java packages are arch: all, nothing to do here
binary-indep: build-indep install-indep
# Create the package here
dh_testdir
dh_testroot
dh_clean -k
dh_install -i
dh_installdocs -i
dh_installchangelogs -i HISTORY.txt
dh_javadoc -i --sourcedir=src
jh_installlibs -i
jh_depends -i
dh_compress -i
dh_fixperms -i
dh_installdeb -i
dh_gencontrol -i
dh_md5sums -i
dh_builddeb -i
binary: binary-indep binary-arch
.PHONY: build build-arch build-indep clean binary-indep binary-arch binary install-indep
|