X-Git-Url: http://git.sven.stormbind.net/?p=sven%2Fjava-package.git;a=blobdiff_plain;f=make-jpkg;h=6ec655ae6df2827ceb33e9c66027b5db82a4a332;hp=a90c26e9e964e1066b5dc45927272b521021314e;hb=98306665069a9bdf0e061f9d06fef9574efad2ab;hpb=7d410d72849ab61c37f9635a3c878c122a01cab0 diff --git a/make-jpkg b/make-jpkg index a90c26e..6ec655a 100755 --- a/make-jpkg +++ b/make-jpkg @@ -79,14 +79,16 @@ Supported java binary distributions currently include: The following options are recognized: - --full-name NAME full name used in the maintainer field of the package - --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 + --full-name NAME full name used in the maintainer field of the package + --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 + --with-system-certs integrate with the system's keystore + --distribution Define the distribution to use in the changelog - --help display this help and exit - --version output version information and exit + --help display this help and exit + --version output version information and exit EOF } @@ -123,6 +125,10 @@ while [[ $# -gt 0 && "x$1" == x--* ]]; do [ $# -le 1 ] && missing_argument "$1" shift maintainer_email="$1" + elif [[ "x$1" == x--distribution ]]; then + [ $# -le 1 ] && missing_argument "$1" + shift + distribution="$1" elif [[ "x$1" == x--revision ]]; then [ $# -le 1 ] && missing_argument "$1" shift @@ -131,6 +137,8 @@ while [[ $# -gt 0 && "x$1" == x--* ]]; do genchanges="true" elif [[ "x$1" == x--source ]]; then build_source="true" + elif [[ "x$1" == x--with-system-certs ]]; then + create_cert_softlinks="true" else unrecognized_option "$1" fi