liberica-jdk-11-bin
maintainer bacteriostat
· 1 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads prebuilt Liberica JDK binaries from BellSoft's official domain (download.bell-sw.com), which is the project's own release infrastructure; although the host is not on a standard whitelist, it is plausibly legitimate and the binaries are checksum-verified, making this a normal, low-risk AUR package for building from official sources.
Triggered rules
LOW
AI review downgraded a static finding
llm_review
The static rules flagged this MEDIUM, but an AI model (qwen/qwen3-235b-a22b-2507) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package downloads prebuilt Liberica JDK binaries from BellSoft's official domain (download.bell-sw.com), which is the project's own release infrastructure; although the host is not on a standard whitelist, it is plausibly legitimate and the binaries are checksum-verified, making this a normal, low-risk AUR package for building from official sources.
1 higher static finding superseded - not the current verdict (shown for transparency)
MEDIUM
source=() URL on a non-standard host
source_untrusted_domain
One or more source=() URLs point to a host outside the trusted allowlist (github.com, gitlab.com, codeberg.org, pypi.org, …).
-
PKGBUILD:45
source_aarch64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-aarch64.tar.gz)
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Bacteriostat <dev dot bacteriostat at aleeas dot com>
2
# Contributor: Jonathon Fernyhough <jonathon"m2x+dev>
3
# Contributor: Sam Guymer <sam at guymer dot me>
4
5
# This PKGBUILD adapted from zulu-11-bin
6
7
_jdkname=liberica-jdk-11
8
pkgname="${_jdkname}-bin"
9
_java_ver=11
10
pkgver=11.0.32+11
11
pkgrel=1
12
pkgdesc='BellSoft builds of OpenJDK are fully certified and 100% open source Java Development Kits (JDKs) for all Java development and production workloads.'
13
arch=(aarch64 armv7h armv8h x86_64)
14
url='https://bell-sw.com/'
15
license=('custom')
16
depends=('java-environment-common=3' 'java-runtime-common>=3' 'ca-certificates-utils')
17
optdepends=(ffmpeg freetype2 gtk2 gtk3 libnet)
18
provides=(
19
"java-environment=$_java_ver"
20
"java-environment-openjdk=$_java_ver"
21
"java-runtime-headless=$_java_ver"
22
"java-runtime-headless-openjdk=$_java_ver"
23
"java-runtime=$_java_ver"
24
"java-runtime-openjdk=$_java_ver"
25
"liberica-jdk-11-lite-bin=$pkgver"
26
"liberica-jre-11-bin=$pkgver"
27
)
28
install=$_jdkname.install
29
30
backup=(etc/${_jdkname}/logging.properties
31
etc/${_jdkname}/management/jmxremote.access
32
etc/${_jdkname}/management/jmxremote.password.template
33
etc/${_jdkname}/management/management.properties
34
etc/${_jdkname}/net.properties
35
etc/${_jdkname}/security/java.policy
36
etc/${_jdkname}/security/java.security
37
etc/${_jdkname}/security/policy/README.txt
38
etc/${_jdkname}/security/policy/limited/default_US_export.policy
39
etc/${_jdkname}/security/policy/limited/default_local.policy
40
etc/${_jdkname}/security/policy/limited/exempt_local.policy
41
etc/${_jdkname}/security/policy/unlimited/default_US_export.policy
42
etc/${_jdkname}/security/policy/unlimited/default_local.policy
43
etc/${_jdkname}/sound.properties)
44
45
source_aarch64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-aarch64.tar.gz)
46
source_armv7h=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-arm32-vfp-hflt.tar.gz)
47
source_armv8h=(${source_armv7h[@]})
48
source_x86_64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-amd64.tar.gz)
49
50
# Upstream-provided
51
sha1sums_aarch64=('968f2ff19a6fee3468944b3dcbaa24d127365252')
52
sha1sums_armv7h=('58025b907ea14d6dbb554bd6530f5d683a2149fc')
53
sha1sums_armv8h=('58025b907ea14d6dbb554bd6530f5d683a2149fc')
54
sha1sums_x86_64=('c33028e0caabdb4663e59cb2cb5d8eddb471298b')
55
56
_jvmdir="/usr/lib/jvm/${_jdkname}"
57
58
package() {
59
cd jdk-${pkgver/+*/}
60
61
install -dm 755 "${pkgdir}/${_jvmdir}"
62
cp -a . "${pkgdir}/${_jvmdir}/"
63
64
# copied from java11-openjdk
65
66
# Conf
67
install -dm 755 "${pkgdir}/etc"
68
cp -r conf "${pkgdir}/etc/${_jdkname}"
69
rm -rf "${pkgdir}/${_jvmdir}/conf"
70
ln -s "/etc/${_jdkname}" "${pkgdir}/${_jvmdir}/conf"
71
72
# Legal
73
install -dm 755 "${pkgdir}/usr/share/licenses"
74
cp -r legal "${pkgdir}/usr/share/licenses/${_jdkname}"
75
rm -rf "${pkgdir}/${_jvmdir}/legal"
76
ln -s "/usr/share/licenses/${_jdkname}" "${pkgdir}/${_jvmdir}/legal"
77
78
# Man pages
79
for f in man/man1/* man/ja/man1/*; do
80
install -Dm 644 "${f}" "${pkgdir}/usr/share/${f/\.1/-$_jdkname.1}"
81
done
82
rm -rf "${pkgdir}/${_jvmdir}/man"
83
ln -s /usr/share/man "${pkgdir}/${_jvmdir}/man"
84
85
# Link JKS keystore from ca-certificates-utils
86
rm -f "${pkgdir}/${_jvmdir}/lib/security/cacerts"
87
ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}/${_jvmdir}/lib/security/cacerts"
88
}
89
Changes since previous scan
--- PKGBUILD @ 2026-06-19 19:07+++ PKGBUILD @ 2026-08-03 00:08@@ -7,7 +7,7 @@ _jdkname=liberica-jdk-11 pkgname="${_jdkname}-bin" _java_ver=11-pkgver=11.0.31+11+pkgver=11.0.32+11 pkgrel=1 pkgdesc='BellSoft builds of OpenJDK are fully certified and 100% open source Java Development Kits (JDKs) for all Java development and production workloads.' arch=(aarch64 armv7h armv8h x86_64)@@ -48,10 +48,10 @@ source_x86_64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-amd64.tar.gz) # Upstream-provided-sha1sums_aarch64=('f8d31584d4d03caf0b41dd6190e9d821be04d4fb')-sha1sums_armv7h=('3391a0a73b85a6ec9ec558b6ad955bac12acc985')-sha1sums_armv8h=('3391a0a73b85a6ec9ec558b6ad955bac12acc985')-sha1sums_x86_64=('219f484fdc0570d2c03b15c29191c04f3777f6c4')+sha1sums_aarch64=('968f2ff19a6fee3468944b3dcbaa24d127365252')+sha1sums_armv7h=('58025b907ea14d6dbb554bd6530f5d683a2149fc')+sha1sums_armv8h=('58025b907ea14d6dbb554bd6530f5d683a2149fc')+sha1sums_x86_64=('c33028e0caabdb4663e59cb2cb5d8eddb471298b') _jvmdir="/usr/lib/jvm/${_jdkname}" Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-03 00:08:14 | LOW | 2 |
| 2026-08-02 00:16:08 | LOW | 2 |
| 2026-08-01 00:11:18 | LOW | 2 |
| 2026-07-31 00:14:10 | LOW | 2 |
| 2026-07-30 00:17:23 | LOW | 2 |
| 2026-07-29 00:25:53 | LOW | 2 |
| 2026-07-28 00:07:28 | LOW | 2 |
| 2026-07-27 00:24:32 | LOW | 2 |
| 2026-07-26 00:07:32 | LOW | 2 |
| 2026-07-25 00:13:44 | LOW | 2 |
| 2026-07-24 00:02:28 | LOW | 2 |
| 2026-07-23 13:24:23 | MEDIUM | 1 |
| 2026-06-19 19:07:35 | CLEAN | 2 |
| 2026-06-18 16:11:54 | MEDIUM | 1 |