commit a495b75ac505e7e1b72264ebba551bf4c485fd49 Author: EnumDev Date: Thu Sep 25 13:48:48 2025 +0300 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..3e58e5f --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +# Exclude bpm archives +*.bpm \ No newline at end of file diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..18cf0ca --- /dev/null +++ b/pkg.info @@ -0,0 +1,11 @@ +name: openjdk-17 +description: OpenJDK Java 17 +version: 17.0.17+8 +url: https://openjdk.org/ +license: GPL2-only WITH Classpath-exception-2.0 +architecture: any +depends: ["freetype2", "gcc-libs", "glibc", "harfbuzz", "hicolor-icon-theme", "lcms2", "libelf", "libjpeg-turbo", "libpng", "nss"] +optional_depends: ["alsa-lib", "gtk3", "tide-java-utils"] +make_depends: ["alsa-lib", "bash", "cpio", "cups", "giflib", "jdk17", "libx11", "libxext", "libxrandr", "libxrender", "libxt", "libxtst", "zip", "unzip"] +provides: ["jre", "jre17", "jdk", "jdk17"] +type: source diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..cfa8e42 --- /dev/null +++ b/source.sh @@ -0,0 +1,52 @@ +# This is the source.sh script. It is executed by BPM in a temporary directory when compiling a source package +# BPM Expects the source code to be extracted into the automatically created 'source' directory which can be accessed using $BPM_SOURCE +# BPM Expects the output files to be present in the automatically created 'output' directory which can be accessed using $BPM_OUTPUT + +DOWNLOAD="https://github.com/openjdk/jdk${BPM_PKG_VERSION%%.*}u/archive/jdk-${BPM_PKG_VERSION}.tar.gz" +FILENAME="${DOWNLOAD##*/}" + +# The prepare function is executed in the root of the temp directory +# This function is used for downloading files and putting them into the correct location +prepare() { + wget "$DOWNLOAD" + tar -xvf "$FILENAME" --strip-components=1 -C "$BPM_SOURCE" +} + +# The build function is executed in the source directory +# This function is used to compile the source code +build() { + unset MAKEFLAGS + + [ -z "$BOOT_JDK" ] && export BOOT_JDK=/usr/lib/java/openjdk-17/ + + bash configure --enable-unlimited-crypto \ + --disable-warnings-as-errors \ + --with-stdc++lib=dynamic \ + --with-giflib=system \ + --with-harfbuzz=system \ + --with-lcms=system \ + --with-libjpeg=system \ + --with-libpng=system \ + --with-zlib=system \ + --with-version-build=${BPM_PKG_VERSION##*+} \ + --with-version-pre="" \ + --with-version-opt="" \ + --with-cacerts-file=/etc/pki/tls/java/cacerts \ + --with-boot-jdk="$BOOT_JDK" + make images +} + +# The package function is executed in the source directory +# This function is used to move the compiled files into the output directory +package() { + install -d "$BPM_OUTPUT"/usr/lib/java/openjdk-${BPM_PKG_VERSION%%.*} + cp -r build/*/images/jdk/* "$BPM_OUTPUT"/usr/lib/java/openjdk-${BPM_PKG_VERSION%%.*}/ + chown -R root:root "$BPM_OUTPUT"/usr/lib/java/openjdk-${BPM_PKG_VERSION%%.*} + + # Symlink cacerts + ln -sf /etc/pki/tls/java/cacerts "$BPM_OUTPUT"/usr/lib/java/openjdk-${BPM_PKG_VERSION%%.*}/lib/security/cacerts + + # Install package license + install -Dm644 "$BPM_SOURCE"/LICENSE "$BPM_OUTPUT"/usr/share/licenses/openjdk-${BPM_PKG_VERSION%%.*}/LICENSE + install -Dm644 "$BPM_SOURCE"/ASSEMBLY_EXCEPTION "$BPM_OUTPUT"/usr/share/licenses/openjdk-${BPM_PKG_VERSION%%.*}/ASSEMBLY_EXCEPTION +}