X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Fjava-package.git;a=blobdiff_plain;f=make-jpkg;h=a90c26e9e964e1066b5dc45927272b521021314e;hp=9eb0fab3a8078cd2e27e023c6bf8c6d7777f666e;hb=1ae43244c583de670c9f27d97ea6561823ef28d4;hpb=f0ddad846249c2e3a76fdc6f3b03ecd467281dc0 diff --git a/make-jpkg b/make-jpkg index 9eb0fab..a90c26e 100755 --- a/make-jpkg +++ b/make-jpkg @@ -31,6 +31,7 @@ else fi genchanges="" +build_source="" ### check for run in fakeroot @@ -71,9 +72,9 @@ $program_name builds a Debian package from the given Java binary distribution FI Supported java binary distributions currently include: * Oracle (http://www.oracle.com/technetwork/java/javase/downloads) : - - The Java Development Kit (JDK), version 6 and 7 - - The Java Runtime Environment (JRE), version 6 and 7 - - The Java API Javadoc, version 6 and 7 + - The Java Development Kit (JDK), version 6, 7 and 8 + - The Java Runtime Environment (JRE), version 6, 7 and 8 + - The Java API Javadoc, version 6, 7 and 8 (Choose tar.gz archives or self-extracting archives, do _not_ choose the RPM!) The following options are recognized: @@ -82,6 +83,7 @@ The following options are recognized: --email EMAIL email address used in the maintainer field of the package --changes create a .changes file --revision add debian revision + --source build a source package instead of a binary deb package --help display this help and exit --version output version information and exit @@ -127,6 +129,8 @@ while [[ $# -gt 0 && "x$1" == x--* ]]; do revision="-${1}" elif [[ "x$1" == x--changes ]]; then genchanges="true" + elif [[ "x$1" == x--source ]]; then + build_source="true" else unrecognized_option "$1" fi