Skip to content

Commit

Permalink
add Java 8
Browse files Browse the repository at this point in the history
  • Loading branch information
pzakha committed Mar 6, 2019
1 parent 71754ce commit f14805a
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 2 deletions.
7 changes: 5 additions & 2 deletions package-lists/buildall.pkgs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,12 @@
# be available to appliance-build.
#

# Note: bcc should be built before bpftrace since it provides libbcc which is
# required to build bpftrace.
# Note: The following packages should be built first be cause other packages
# depend on them being built.
# - bcc is required by bpftrace
# - java8 is required by the saml app
bcc
java8

bpftrace
cloud-init
Expand Down
40 changes: 40 additions & 0 deletions packages/java8/config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
#!/bin/bash
#
# Copyright 2018 Delphix
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# shellcheck disable=SC2034

DEFAULT_PACKAGE_GIT_URL=none

tarfile="jdk-8u171-linux-x64.tar.gz"
jdk_path="/usr/lib/jvm/oracle-java8-jdk-amd64"

function prepare() {
logmust install_pkgs java-package
}

function fetch() {
logmust cd "$WORKDIR/"
local url="http://artifactory.delphix.com/artifactory"
logmust wget -nv "$url/java-binaries/linux/jdk/8/$tarfile" -O "$tarfile"
}

function build() {
logmust cd "$WORKDIR/"
logmust env DEB_BUILD_OPTIONS=nostrip fakeroot make-jpkg "$tarfile" <<<y
logmust mv ./*.deb "$WORKDIR/artifacts/"
logmust bash -c "echo $jdk_path >'$WORKDIR/artifacts/JDK_PATH'"
logmust install_pkgs "$WORKDIR/artifacts/"*.deb
}

0 comments on commit f14805a

Please sign in to comment.