development/zulu-openjdk7: Updated for version 7.0.322
Signed-off-by: Gustavo Brondani Schenkel <gustavo.schenkel@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
f6b3065705
commit
7ad48d846f
|
@ -25,26 +25,19 @@
|
||||||
cd $(dirname $0) ; CWD=$(pwd)
|
cd $(dirname $0) ; CWD=$(pwd)
|
||||||
|
|
||||||
PRGNAM=zulu-openjdk7
|
PRGNAM=zulu-openjdk7
|
||||||
VERSION=${VERSION:-7.0.242}
|
VERSION=${VERSION:-7.0.322}
|
||||||
ZULUVERSION=${ZULUVERSION:-7.34.0.5}
|
ZULUVERSION=${ZULUVERSION:-7.50.0.11}
|
||||||
BUILD=${BUILD:-1}
|
BUILD=${BUILD:-1}
|
||||||
TAG=${TAG:-_SBo}
|
TAG=${TAG:-_SBo}
|
||||||
PKGTYPE=${PKGTYPE:-tgz}
|
PKGTYPE=${PKGTYPE:-tgz}
|
||||||
|
|
||||||
# The name of azul's zulu openjdk source archive has the syntax below :
|
if [ -z "$ARCH" ]; then
|
||||||
#
|
case "$( uname -m )" in
|
||||||
# zulu<ZULU_VERSION>-jdk<JDK_VERSION>-linux_x64
|
i?86) ARCH=i686 ;;
|
||||||
#
|
x86_64) ARCH=x64 ;;
|
||||||
# Note: The archive's name is also the name of the top directory found
|
esac
|
||||||
# in this archive.
|
fi
|
||||||
#
|
|
||||||
SRCNAM="zulu${ZULUVERSION}-ca-jdk${VERSION}-linux_x64"
|
|
||||||
|
|
||||||
ARCH=${ARCH:-$(uname -m)}
|
|
||||||
|
|
||||||
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
|
|
||||||
# the name of the created package would be, and then exit. This information
|
|
||||||
# could be useful to other scripts.
|
|
||||||
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
|
||||||
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
|
||||||
exit 0
|
exit 0
|
||||||
|
@ -54,7 +47,10 @@ TMP=${TMP:-/tmp/SBo}
|
||||||
PKG=${TMP}/package-${PRGNAM}
|
PKG=${TMP}/package-${PRGNAM}
|
||||||
OUTPUT=${OUTPUT:-/tmp}
|
OUTPUT=${OUTPUT:-/tmp}
|
||||||
|
|
||||||
if [ "${ARCH}" = "x86_64" ] ; then
|
if [ "$ARCH" = "i686" ]; then
|
||||||
|
LIB_ARCH=i686
|
||||||
|
LIBDIRSUFFIX=""
|
||||||
|
elif [ "$ARCH" = "x64" ]; then
|
||||||
LIB_ARCH=amd64
|
LIB_ARCH=amd64
|
||||||
LIBDIRSUFFIX="64"
|
LIBDIRSUFFIX="64"
|
||||||
else
|
else
|
||||||
|
@ -62,6 +58,8 @@ else
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
SRCNAM=zulu${ZULUVERSION}-ca-jdk${VERSION}-linux_$ARCH
|
||||||
|
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
rm -rf $PKG
|
rm -rf $PKG
|
||||||
|
|
|
@ -1,10 +1,10 @@
|
||||||
PRGNAM="zulu-openjdk7"
|
PRGNAM="zulu-openjdk7"
|
||||||
VERSION="7.0.242"
|
VERSION="7.0.322"
|
||||||
HOMEPAGE="http://zulu.org"
|
HOMEPAGE="https://www.azul.com/downloads"
|
||||||
DOWNLOAD="UNSUPPORTED"
|
DOWNLOAD="https://cdn.azul.com/zulu/bin/zulu7.50.0.11-ca-jdk7.0.322-linux_i686.tar.gz"
|
||||||
MD5SUM=""
|
MD5SUM="5ea03690b06119c3023df2aa73e512c7"
|
||||||
DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu7.34.0.5-ca-jdk7.0.242-linux_x64.tar.gz"
|
DOWNLOAD_x86_64="https://cdn.azul.com/zulu/bin/zulu7.50.0.11-ca-jdk7.0.322-linux_x64.tar.gz"
|
||||||
MD5SUM_x86_64="1b527411fa48bf37666eeb80098b9ef1"
|
MD5SUM_x86_64="6116f8af12ba6c8a72ff4b5e45397a92"
|
||||||
REQUIRES=""
|
REQUIRES=""
|
||||||
MAINTAINER="Sébastien Ballet"
|
MAINTAINER="Sébastien Ballet"
|
||||||
EMAIL="slacker6896@gmail.com"
|
EMAIL="slacker6896@gmail.com"
|
||||||
|
|
Loading…
Reference in New Issue