From a0ac89cbd1b8286fb13b6fd799286a5380dcb539 Mon Sep 17 00:00:00 2001 From: EnumDev Date: Wed, 14 Jan 2026 09:27:22 +0200 Subject: [PATCH] Initial Commit --- pkg.info | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ post_install.sh | 4 ++++ source.sh | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 98 insertions(+) create mode 100644 pkg.info create mode 100644 post_install.sh create mode 100644 source.sh diff --git a/pkg.info b/pkg.info new file mode 100644 index 0000000..5a852cb --- /dev/null +++ b/pkg.info @@ -0,0 +1,48 @@ +name: openjdk-25 +description: OpenJDK Java 25 +version: 25.0.1+8 +revision: 1 +url: https://openjdk.org/ +license: GPL2-only WITH Classpath-exception-2.0 +architecture: any +type: source +depends: + - freetype2 + - gcc-libs + - glibc + - harfbuzz + - hicolor-icon-theme + - lcms2 + - libelf + - libjpeg-turbo + - libpng + - nss + - tide-java-utils +optional_depends: + - alsa-lib + - gtk3 +make_depends: + - alsa-lib + - bash + - cpio + - cups + - giflib + - jdk25 + - libx11 + - libxext + - libxrandr + - libxrender + - libxt + - libxtst + - zip + - unzip +provides: + - jre + - jre25 + - jdk + - jdk25 +downloads: + - url: https://github.com/openjdk/jdk${BPM_PKG_VERSION%%.*}u/archive/jdk-${BPM_PKG_VERSION}.tar.gz + extract_to: ${BPM_SOURCE} + extract_strip_components: 1 + checksum: d530e3d08ebda8ddb13431e3b54eaaef2329704d4e096cbf815353fcb8646a83 diff --git a/post_install.sh b/post_install.sh new file mode 100644 index 0000000..b014a44 --- /dev/null +++ b/post_install.sh @@ -0,0 +1,4 @@ +#!/bin/bash + +# Set default java version if not already set +[ -d /usr/lib/java/default/bin ] || ln -sf openjdk-25 -T /usr/lib/java/default diff --git a/source.sh b/source.sh new file mode 100644 index 0000000..821b197 --- /dev/null +++ b/source.sh @@ -0,0 +1,46 @@ +# 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 + +# 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-${BPM_PKG_VERSION%%.*}/ + + 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 icons + for size in 16 24 32 48; do + install -Dm644 src/java.desktop/unix/classes/sun/awt/X11/java-icon${size}.png "$BPM_OUTPUT"/usr/share/icons/hicolor/${size}x${size}/apps/java.png + done + + 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 +}