diff options
author | fordprefect | 2019-01-24 21:35:13 +0100 |
---|---|---|
committer | fordprefect | 2019-01-24 21:35:13 +0100 |
commit | bce883eb7b17d32f9be7f2d27b3d86590c77cf55 (patch) | |
tree | 8242d17b5f3aefa0491773625fe5450bae976db7 | |
parent | bc14cac46d8a31a8d5a9ac27c8e00efb22184459 (diff) | |
download | aur-bce883eb7b17d32f9be7f2d27b3d86590c77cf55.tar.gz |
fixed startup with jre11
-rw-r--r-- | .SRCINFO | 6 | ||||
-rw-r--r-- | PKGBUILD | 8 | ||||
-rw-r--r-- | jameica-start-script.patch | 11 |
3 files changed, 20 insertions, 5 deletions
@@ -1,9 +1,9 @@ # Generated by mksrcinfo v8 -# Thu Jan 24 08:02:29 UTC 2019 +# Thu Jan 24 20:34:37 UTC 2019 pkgbase = jameica pkgdesc = free runtime environment for java applications pkgver = 2.8.2 - pkgrel = 3 + pkgrel = 4 url = https://www.willuhn.de/products/jameica/ install = jameica.install arch = i686 @@ -15,8 +15,10 @@ pkgbase = jameica depends = swt depends = gtk2 optdepends = java-jce_ustrength: Required for mashup plugin used as new scripting platform for non-HBCI accounts (credit cards etc) + source = jameica-start-script.patch source = jameicaserver-start-script.patch source = jameica.install + sha1sums = 7c1cf5a2584b18bc3682475faeb1a045e3cd7328 sha1sums = 0664650342635fa5b0a9413dc8c22a65053ef234 sha1sums = 39c008050c7f90f3fde05b849cba80559207bdb5 source_i686 = https://www.willuhn.de/products/jameica/releases/current/jameica/jameica-linux-2.8.2.zip @@ -2,7 +2,7 @@ pkgname=jameica pkgver=2.8.2 _pkgver=2.8 -pkgrel=3 +pkgrel=4 pkgdesc="free runtime environment for java applications" arch=('i686' 'x86_64') url="https://www.willuhn.de/products/jameica/" @@ -14,7 +14,8 @@ install="jameica.install" source_i686=("https://www.willuhn.de/products/jameica/releases/current/jameica/jameica-linux-${pkgver}.zip" "https://www.willuhn.de/products/jameica/releases/current/jameica/jameica-linux-${pkgver}.zip.asc") validpgpkeys=("7314FBDE7D38EE5610D291B65A8ED9CFC0DB6C70") # Olaf Willuhn <info@willuhn.de> -sha1sums=('0664650342635fa5b0a9413dc8c22a65053ef234' +sha1sums=('7c1cf5a2584b18bc3682475faeb1a045e3cd7328' + '0664650342635fa5b0a9413dc8c22a65053ef234' '39c008050c7f90f3fde05b849cba80559207bdb5') sha1sums_i686=('6e4d7c92d34e5f4962f8edecb6ea685443943e27' 'SKIP') @@ -22,10 +23,11 @@ sha1sums_x86_64=('bb1f7494ae8f2d0c5fc3ea85b6714667df9b55f7' 'SKIP') source_x86_64=("https://www.willuhn.de/products/jameica/releases/current/jameica/jameica-linux64-${pkgver}.zip" "https://www.willuhn.de/products/jameica/releases/current/jameica/jameica-linux64-${pkgver}.zip.asc") -source=("jameicaserver-start-script.patch" +source=("jameica-start-script.patch" "jameicaserver-start-script.patch" "jameica.install") prepare() { + patch jameica/jameica.sh jameica-start-script.patch patch jameica/jameicaserver.sh jameicaserver-start-script.patch } diff --git a/jameica-start-script.patch b/jameica-start-script.patch new file mode 100644 index 000000000000..db30a5698d43 --- /dev/null +++ b/jameica-start-script.patch @@ -0,0 +1,11 @@ +6,13c6 +< #_JCONSOLE="-Dcom.sun.management.jmxremote" +< +< # https://www.willuhn.de/bugzilla/show_bug.cgi?id=774 +< # https://www.willuhn.de/bugzilla/show_bug.cgi?id=798 +< +< link=$(readlink -f "$0") +< dir=$(dirname "$link") +< cd "$dir" +--- +> cd /opt/jameica |