mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-16 19:50:19 +01:00
development/zulu-openjdk7: Updated for version 7.0.352, new maint.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
694126ac7e
commit
0838d0778a
2 changed files with 16 additions and 12 deletions
|
@ -3,6 +3,7 @@
|
|||
# Slackware build script for zulu-openjdk7
|
||||
|
||||
# Copyright (c) 2017-2019, Sébastien Ballet <slacker6896 at gmail.com>
|
||||
# Copyright (c) 2022, Andrew Clemons, Tokyo Japan
|
||||
# All rights reserved.
|
||||
#
|
||||
# Redistribution and use of this script, with or without modification, is
|
||||
|
@ -25,8 +26,8 @@
|
|||
cd $(dirname $0) ; CWD=$(pwd)
|
||||
|
||||
PRGNAM=zulu-openjdk7
|
||||
VERSION=${VERSION:-7.0.332}
|
||||
ZULUVERSION=${ZULUVERSION:-7.52.0.11}
|
||||
VERSION=${VERSION:-7.0.352}
|
||||
ZULUVERSION=${ZULUVERSION:-7.56.0.11}
|
||||
BUILD=${BUILD:-1}
|
||||
TAG=${TAG:-_SBo}
|
||||
PKGTYPE=${PKGTYPE:-tgz}
|
||||
|
@ -51,9 +52,11 @@ OUTPUT=${OUTPUT:-/tmp}
|
|||
if [ "$ARCH" = "i686" ]; then
|
||||
ZULU_ARCH=i686
|
||||
LIBDIRSUFFIX=""
|
||||
JVMLIBARCH="i386"
|
||||
elif [ "$ARCH" = "x86_64" ]; then
|
||||
ZULU_ARCH=x64
|
||||
LIBDIRSUFFIX="64"
|
||||
JVMLIBARCH="amd64"
|
||||
else
|
||||
echo "Architecture ${ARCH} is not supported."
|
||||
exit 1
|
||||
|
@ -84,9 +87,10 @@ find -L . \
|
|||
# or "no". Default to "yes"
|
||||
#
|
||||
if [ "${CREATE_LIBJVM_SYMLINK:-yes}" = "yes" ] ; then
|
||||
ln -sf \
|
||||
${PRGNAM}/jre/lib/${LIB_ARCH}/server/libjvm.so \
|
||||
$PKG/usr/lib${LIBDIRSUFFIX}/libjvm.so
|
||||
(
|
||||
cd $PKG/usr/lib${LIBDIRSUFFIX}/
|
||||
ln -sf $PRGNAM/jre/lib/${JVMLIBARCH}/server/libjvm.so
|
||||
)
|
||||
fi
|
||||
|
||||
mkdir -p ${PKG}/etc/profile.d
|
||||
|
|
|
@ -1,10 +1,10 @@
|
|||
PRGNAM="zulu-openjdk7"
|
||||
VERSION="7.0.332"
|
||||
VERSION="7.0.352"
|
||||
HOMEPAGE="https://www.azul.com/downloads"
|
||||
DOWNLOAD="https://cdn.azul.com/zulu/bin/zulu7.52.0.11-ca-jdk7.0.332-linux_i686.tar.gz"
|
||||
MD5SUM="b0e90ecef800523d70bba23b23b57e60"
|
||||
DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu7.52.0.11-ca-jdk7.0.332-linux_x64.tar.gz"
|
||||
MD5SUM_x86_64="eae1e3d55e58b971c9a363eda814d642"
|
||||
DOWNLOAD="https://cdn.azul.com/zulu/bin/zulu7.56.0.11-ca-jdk7.0.352-linux_i686.tar.gz"
|
||||
MD5SUM="22021bddb3f07041cf67a47f3d3cf37c"
|
||||
DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu7.56.0.11-ca-jdk7.0.352-linux_x64.tar.gz"
|
||||
MD5SUM_x86_64="ffcb957e1d4c701c9fef165812440fb6"
|
||||
REQUIRES=""
|
||||
MAINTAINER="Sébastien Ballet"
|
||||
EMAIL="slacker6896@gmail.com"
|
||||
MAINTAINER="Andrew Clemons"
|
||||
EMAIL="andrew.clemons@gmail.com"
|
||||
|
|
Loading…
Reference in a new issue