ozone
maintainer AlexisPolti
· 24 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package downloads a source tarball from the official Segger downloads domain, which is the project's legitimate release host, and installs it as a prebuilt binary; despite the non-whitelisted host, this is a standard and expected source for the software, with no evidence of malicious behavior or supply-chain 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 a source tarball from the official Segger downloads domain, which is the project's legitimate release host, and installs it as a prebuilt binary; despite the non-whitelisted host, this is a standard and expected source for the software, with no evidence of malicious behavior or supply-chain 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:16
source_x86_64=("Ozone_Linux_V${pkgver/./}_x86_64.tgz::https://www.segger.com/downloads/jlink/Ozone_Linux_V${pkgver/./}_x86_64.tgz")
PKGBUILD
1 offending line(s) highlighted
1
# Maintainer: Alexis Polti <ArchSegger at gmail dot com>
2
# Maintainer: pzl <alsoelp at gmail dot com>
3
4
pkgname=ozone
5
pkgver=3.50a
6
pkgrel=2
7
epoch=32
8
pkgdesc="Segger Ozone JLink debugger for Linux"
9
arch=('x86_64')
10
license=('custom')
11
groups=('jlink')
12
replaces=('jlink-debugger')
13
conflicts=('jlink-debugger')
14
provides=('jlink-debugger')
15
depends=('jlink-software-and-documentation>=5.10n')
16
source_x86_64=("Ozone_Linux_V${pkgver/./}_x86_64.tgz::https://www.segger.com/downloads/jlink/Ozone_Linux_V${pkgver/./}_x86_64.tgz")
17
source=("Ozone.desktop" "Ozone.svg")
18
md5sums_x86_64=('25194f1555a757a091ff6187e024d2f3')
19
md5sums=('d1d2aa1b868487207ad256ebc8235982' 'f7c46fe903305c37f38f846b18318b38')
20
21
url="https://www.segger.com/jlink-software.html"
22
options=(!strip)
23
24
package(){
25
mv Ozone_Linux_V${pkgver/./}_x86_64 Ozone
26
27
# Match package placement from their .deb, in /opt
28
install -dm755 "${pkgdir}/opt/SEGGER/Ozone" \
29
"${pkgdir}/usr/share/licenses/${pkgname}" \
30
"${pkgdir}/usr/lib/" \
31
"${pkgdir}/usr/bin/" \
32
"${pkgdir}/usr/share/doc/${pkgname}/" \
33
"${pkgdir}/usr/share/pixmaps" \
34
"${pkgdir}/usr/share/applications"
35
36
# Install desktop entry
37
install -Dm644 "Ozone.desktop" "${pkgdir}/usr/share/applications/Ozone.desktop"
38
install -Dm644 "Ozone.svg" "${pkgdir}/usr/share/pixmaps/Ozone.svg"
39
40
cd ${srcdir}/Ozone
41
42
# Make permissions right
43
find . -type d | xargs -i'{}' chmod a+rx '{}'
44
find . -type f | xargs -i'{}' chmod a+r '{}'
45
46
# Remove un-needed files
47
find . -name ".svn" | xargs rm -rf
48
49
# Bulk copy everything
50
cp -ax Ozone ozone ozone-sim Plugins Doc Config Lib Ozone.png Examples "${pkgdir}/opt/SEGGER/Ozone"
51
52
# Create links where needed
53
ln -s /opt/SEGGER/Ozone/Doc/License.txt "${pkgdir}/usr/share/licenses/${pkgname}/"
54
ln -s /opt/SEGGER/Ozone/Ozone "${pkgdir}/usr/bin"
55
ln -s /opt/SEGGER/Ozone/ozone-sim "${pkgdir}/usr/bin"
56
57
for f in Doc/*; do
58
ln -s /opt/SEGGER/Ozone/"$f" "${pkgdir}/usr/share/doc/${pkgname}"
59
done
60
}
61
Changes since previous scan
--- PKGBUILD @ 2026-07-03 17:12+++ PKGBUILD @ 2026-08-03 00:08@@ -2,9 +2,9 @@ # Maintainer: pzl <alsoelp at gmail dot com> pkgname=ozone-pkgver=3.50-pkgrel=0-epoch=31+pkgver=3.50a+pkgrel=2+epoch=32 pkgdesc="Segger Ozone JLink debugger for Linux" arch=('x86_64') license=('custom')@@ -15,18 +15,14 @@ depends=('jlink-software-and-documentation>=5.10n') source_x86_64=("Ozone_Linux_V${pkgver/./}_x86_64.tgz::https://www.segger.com/downloads/jlink/Ozone_Linux_V${pkgver/./}_x86_64.tgz") source=("Ozone.desktop" "Ozone.svg")-md5sums_x86_64=('9fb94362dad013bad53212b0ac3daf83')+md5sums_x86_64=('25194f1555a757a091ff6187e024d2f3') md5sums=('d1d2aa1b868487207ad256ebc8235982' 'f7c46fe903305c37f38f846b18318b38') url="https://www.segger.com/jlink-software.html" options=(!strip) package(){- if [ ${CARCH} = "i686" ]; then- mv Ozone_Linux_V${pkgver/./}_i386 Ozone- else- mv Ozone_Linux_V${pkgver/./}_x86_64 Ozone- fi+ mv Ozone_Linux_V${pkgver/./}_x86_64 Ozone # Match package placement from their .deb, in /opt install -dm755 "${pkgdir}/opt/SEGGER/Ozone" \@@ -44,18 +40,19 @@ cd ${srcdir}/Ozone # Make permissions right- find . -type d | xargs chmod a+rx- find . -type f | xargs chmod a+r+ find . -type d | xargs -i'{}' chmod a+rx '{}'+ find . -type f | xargs -i'{}' chmod a+r '{}' # Remove un-needed files find . -name ".svn" | xargs rm -rf # Bulk copy everything- cp --preserve=mode -r Ozone Plugins Doc Config Lib Ozone.png "${pkgdir}/opt/SEGGER/Ozone"+ cp -ax Ozone ozone ozone-sim Plugins Doc Config Lib Ozone.png Examples "${pkgdir}/opt/SEGGER/Ozone" # Create links where needed ln -s /opt/SEGGER/Ozone/Doc/License.txt "${pkgdir}/usr/share/licenses/${pkgname}/" ln -s /opt/SEGGER/Ozone/Ozone "${pkgdir}/usr/bin"+ ln -s /opt/SEGGER/Ozone/ozone-sim "${pkgdir}/usr/bin" for f in Doc/*; do ln -s /opt/SEGGER/Ozone/"$f" "${pkgdir}/usr/share/doc/${pkgname}"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 17:25:21 | MEDIUM | 1 |
| 2026-07-03 17:12:27 | CLEAN | 2 |
| 2026-06-19 19:07:35 | CLEAN | 2 |
| 2026-06-18 16:11:54 | MEDIUM | 1 |