#!/bin/sh set -e . ../../common.sh # Read the common configuration properties. DOWNLOAD_URL=`read_property ZULUJDK_URL` USE_LOCAL_SOURCE=`read_property USE_LOCAL_SOURCE` # Grab everything after the last '/' character. ARCHIVE_FILE=${DOWNLOAD_URL##*/} if [ "$USE_LOCAL_SOURCE" = "true" -a ! -f $MAIN_SRC_DIR/source/overlay/$ARCHIVE_FILE ] ; then echo "Bundle $MAIN_SRC_DIR/source/overlay/$ARCHIVE_FILE is missing and will be downloaded." USE_LOCAL_SOURCE="false" fi cd $MAIN_SRC_DIR/source/overlay if [ ! "$USE_LOCAL_SOURCE" = "true" ] ; then # Downloading Zulu JDK bundle file. The '-c' option allows the download to resume. echo "Downloading Zulu JDK bundle from $DOWNLOAD_URL" wget -c $DOWNLOAD_URL else echo "Using local Zulu JDK bundle $MAIN_SRC_DIR/source/overlay/$ARCHIVE_FILE" fi # Delete folder with previously extracted Felix. echo "Removing Zulu JDK work area. This may take a while." rm -rf $WORK_DIR/overlay/$BUNDLE_NAME mkdir $WORK_DIR/overlay/$BUNDLE_NAME # Extract Zulu JDK to folder 'work/overlay/zulujdk'. # Full path will be something like 'work/overlay/zulujdk/jdk-9'. tar -xvf $ARCHIVE_FILE -C $WORK_DIR/overlay/$BUNDLE_NAME cd $SRC_DIR