liberica-jdk-25-full-bin

LOW
maintainer Nevuly 1 votes scanned 2026-09-17 00:27:14.276658
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 legitimate release infrastructure; despite the static analyzer flag for a non-standard host, the source is trustworthy and the binaries are checksummed, making this a standard AUR binary package with low risk.

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 legitimate release infrastructure; despite the static analyzer flag for a non-standard host, the source is trustworthy and the binaries are checksummed, making this a standard AUR binary package with low risk.

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:55 source_aarch64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-aarch64-full.tar.gz)

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Yang Jeong Hun (Nevuly) <onyxclover9931@gmail.com>
2# Contributor: Yurii Kolesnykov <root@yurikoles.com>
3# Contributor: Jonathon Fernyhough <jonathon"m2x+dev>
4# Contributor: Sam Guymer <sam at guymer dot me>
5# Contributor: Levente Polyak <anthraxx[at]archlinux[dot]org>
6# Contributor: Guillaume ALAUX <guillaume@archlinux.org>
7
8# This PKGBUILD adapted from zulu-11-bin
9
10_pkgbase=liberica-jdk-full
11_java_ver=25
12_jdkname="liberica-jdk-${_java_ver}-full"
13pkgname="${_jdkname}-bin"
14pkgver=25.0.4.1+1
15pkgrel=1
16pkgdesc='BellSoft builds of OpenJDK are fully certified and 100% open source Java Development Kits (JDKs) for all Java development and production workloads. Full version includes OpenJFX.'
17arch=(aarch64 armv7h armv8h x86_64)
18url='https://bell-sw.com/'
19license=('custom')
20depends=('java-environment-common=3' 'java-runtime-common>=3' 'ca-certificates-utils')
21optdepends=(ffmpeg freetype2 gtk2 gtk3 libnet)
22provides=(
23 "java-environment=${pkgver/.*}"
24 "java-environment-openjdk=${pkgver/.*}"
25 "java-openjfx=${pkgver/.*}"
26 "java-runtime-headless=${pkgver/.*}"
27 "java-runtime-headless-openjdk=${pkgver/.*}"
28 "java-runtime=${pkgver/.*}"
29 "java-runtime-openjdk=${pkgver/.*}"
30 "liberica-jdk-25-bin=$pkgver"
31 "liberica-jdk-25-full-bin=$pkgver"
32 "liberica-jdk-25-lite-bin=$pkgver"
33 "liberica-jre-25-bin=$pkgver"
34 "liberica-jre-25-full-bin=$pkgver"
35)
36install=$_jdkname.install
37
38backup=(etc/${_jdkname}/logging.properties
39 etc/${_jdkname}/management/jmxremote.access
40 etc/${_jdkname}/management/jmxremote.password.template
41 etc/${_jdkname}/management/management.properties
42 etc/${_jdkname}/net.properties
43 etc/${_jdkname}/security/java.security
44 etc/${_jdkname}/security/policy/README.txt
45 etc/${_jdkname}/security/policy/limited/default_US_export.policy
46 etc/${_jdkname}/security/policy/limited/default_local.policy
47 etc/${_jdkname}/security/policy/limited/exempt_local.policy
48 etc/${_jdkname}/security/policy/unlimited/default_US_export.policy
49 etc/${_jdkname}/security/policy/unlimited/default_local.policy
50 etc/${_jdkname}/sound.properties)
51
52source=(freedesktop-java.desktop.in
53 freedesktop-jconsole.desktop.in
54 freedesktop-jshell.desktop.in)
55source_aarch64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-aarch64-full.tar.gz)
56source_armv7h=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-arm32-vfp-hflt-full.tar.gz)
57source_armv8h=(${source_armv7h[@]})
58source_x86_64=(https://download.bell-sw.com/java/$pkgver/bellsoft-jdk$pkgver-linux-amd64-full.tar.gz)
59
60sha1sums=('ec278cbc0a5f7a188140703c63e3b9cdb3931c29'
61 '41cece227a4641fbb1e04d246c51ac2dac7f0012'
62 '13af0192b2ffe02efaf5ae6a592b3ea15d9f7194')
63sha1sums_aarch64=('3fe6debbb76bc94210d86745e3bbff01f755efa5')
64sha1sums_armv7h=('8206cb697305315ac2da09c45518e26879f993c3')
65sha1sums_armv8h=('8206cb697305315ac2da09c45518e26879f993c3')
66sha1sums_x86_64=('06b9069ceea8f3569546030b4663930193ffcfa6')
67
68# Skip debug package generation and stripping for prebuilt binaries
69options=(!debug !strip)
70
71# Upstream-provided
72
73_jvmdir="/usr/lib/jvm/${_jdkname}"
74
75prepare() {
76 for f in *.desktop.in; do
77 sed "s|@@VER@@|${pkgver/.*}|g; s|@@PATH@@|${_jvmdir}|g" $f >> ${f/.in}
78 done
79}
80
81package() {
82 cd jdk-${pkgver/+*}-full
83
84 install -dm 755 "${pkgdir}/${_jvmdir}"
85 cp -r . "${pkgdir}/${_jvmdir}/"
86
87 # copied from java11-openjdk
88
89 # Conf
90 install -dm 755 "${pkgdir}/etc"
91 cp -r conf "${pkgdir}/etc/${_jdkname}"
92 rm -rf "${pkgdir}/${_jvmdir}/conf"
93 ln -s "/etc/${_jdkname}" "${pkgdir}/${_jvmdir}/conf"
94
95 # Legal
96 install -dm 755 "${pkgdir}/usr/share/licenses"
97 cp -r legal "${pkgdir}/usr/share/licenses/${_jdkname}"
98 rm -rf "${pkgdir}/${_jvmdir}/legal"
99 ln -s "/usr/share/licenses/${_jdkname}" "${pkgdir}/${_jvmdir}/legal"
100
101 # Link JKS keystore from ca-certificates-utils
102 rm -f "${pkgdir}/${_jvmdir}/lib/security/cacerts"
103 ln -sf /etc/ssl/certs/java/cacerts "${pkgdir}/${_jvmdir}/lib/security/cacerts"
104
105 # Launchers
106 for f in java jconsole jshell; do
107 install -Dm644 "${srcdir}"/freedesktop-${f}.desktop "${pkgdir}"/usr/share/applications/${f}-${_jdkname}.desktop
108 done
109}
110

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 00:03:17 Low 2
2026-09-15 00:25:31 Low 2
2026-09-14 00:27:57 Low 2
2026-09-13 00:19:54 Low 2
2026-09-12 00:25:17 Low 2
2026-09-11 00:19:22 Low 2
2026-09-10 00:22:44 Low 2
2026-09-09 00:04:09 Low 2
2026-09-08 00:18:08 Low 2
2026-09-07 00:30:15 Low 2
2026-09-06 00:17:06 Low 2
2026-09-05 00:16:27 Low 2
2026-09-04 00:03:13 Low 2
2026-09-03 00:15:47 Low 2
2026-09-02 00:02:31 Low 2
2026-09-01 00:11:19 Low 2
2026-08-31 00:19:57 Low 2
2026-08-30 00:04:14 Low 2
2026-08-29 01:37:41 Medium 1

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion