yaze

maintainer antonioleal · 5 votes · scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged The package builds from a source tarball hosted on a university subdomain, which is plausibly the project's official home; despite the non-whitelisted host, this is a normal source for an academic project, and the checksums are provided and verified.

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-07-25) reviewed the full PKGBUILD and judged it LOW (confidence 95%): The package builds from a source tarball hosted on a university subdomain, which is plausibly the project's official home; despite the non-whitelisted host, this is a normal source for an academic project, and the checksums are provided and verified.

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:11 source=("http://www.mathematik.uni-ulm.de/users/ag/yaze-ag/devel/yaze-ag-${pkgver}.tar.gz" yaze-ag.png yaze-ag.desktop yaze.sh.patch Makefile.patch)

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Antonio Leal <antonioleal@yahoo.com>
2# Contributer: Frederic Bezies < fredbezies at gmail dot com>
3# Contributor: Drew DeVault <sir@cmpwn.com>
4pkgname=yaze
5pkgver=2.51.3
6pkgrel=2
7license=('GPL')
8pkgdesc='Yet Another z80 (CP/M) Emulator'
9arch=("i686" "x86_64")
10url='http://www.mathematik.uni-ulm.de/users/ag/yaze-ag/'
11source=("http://www.mathematik.uni-ulm.de/users/ag/yaze-ag/devel/yaze-ag-${pkgver}.tar.gz" yaze-ag.png yaze-ag.desktop yaze.sh.patch Makefile.patch)
12sha256sums=('2b0a90c3bf3a27574b0427cf4579dc2347b371bec3fea5739e1527edf74b2809'
13 '3272ac8db333ad8d285606c371893d8eef7f786c645dfeb5aab3fd2362212cdd'
14 'f8a03b442cdba46e58bc73818dd66d02c99ecf5f6d6e022b19dbfea629f7b47a'
15 'ee175608dd75c255cf4e2e35504dff72fc882098f94f6c24ea2d9646f5964311'
16 '5ded34c0fc2da43c47f823ad7b3011d22142acbb54f41cca618c002516f2ec93')
17options=(!debug)
18
19prepare() {
20 cd ${pkgname}-ag-${pkgver}
21 cp Makefile_linux_64_intel_corei7 Makefile
22 patch yaze.sh "$srcdir"/yaze.sh.patch
23 patch Makefile "$srcdir"/Makefile.patch
24}
25
26build() {
27 cd ${pkgname}-ag-${pkgver}
28 [[ ${CARCH} == x86_64 ]] && _BUILD='" (build for x86_64Bit (x86-64))"'
29 [[ ${CARCH} == i686 ]] && _BUILD='" (build for x86_32Bit (i686))"'
30 make PREFIX=/usr BUILD="${_BUILD}" OPTIMIZE="${CFLAGS/-O2/-O3}"
31}
32
33package() {
34 cd ${pkgname}-ag-${pkgver}
35 BINDIR=${BINDIR:-"$pkgdir/usr/bin"}
36 MANDIR=${MANDIR:-"$pkgdir/usr/man/man1"}
37 LIBDIR=${LIBDIR:-"$pkgdir/usr/lib/yaze-ag"}
38 DSKDIR=${DSKDIR:-"$pkgdir/usr/share/yaze-ag/disks"}
39 DOCDIR=${DOCDIR:-"$pkgdir/usr/doc/yaze-ag-$pkgver/doc"}
40 DOCHTMLDIR=${DOCHTMLDIR:-"$pkgdir/usr/doc/yaze-ag-$pkgver/doc_html"}
41 mkdir -p $BINDIR $MANDIR $LIBDIR $DSKDIR $DOCDIR $DOCHTMLDIR
42 install -s -c -m 755 yaze_bin $BINDIR
43 install -s -c -m 755 cdm $BINDIR
44 install -c -m 755 yaze $BINDIR
45 install -c -m 644 yaze-cpm3.boot $LIBDIR
46 install -c -m 644 yaze.boot $LIBDIR
47 install -c -m 644 m2.ktt $LIBDIR
48 install -c -m 644 sample.ktt $LIBDIR
49 install -c -m 644 yaze.ktt $LIBDIR
50 install -c -m 644 yaze.1 $MANDIR
51 install -c -m 644 cdm.1 $MANDIR
52 install -c -m 644 cpm.1 $MANDIR
53 install -c -m 644 z80.1 $MANDIR
54 /bin/sh $srcdir/${pkgname}-ag-${pkgver}/install_disks.sh $DSKDIR
55 /bin/sh $srcdir/${pkgname}-ag-${pkgver}/install_doc.sh $DOCDIR
56 /bin/sh $srcdir/${pkgname}-ag-${pkgver}/install_doc_html.sh $DOCHTMLDIR
57
58 mkdir -p "$pkgdir/usr/share/pixmaps"
59 cp "$srcdir"/yaze-ag.png "$pkgdir/usr/share/pixmaps"
60 mkdir -p "$pkgdir/usr/share/applications"
61 cp "$srcdir"/yaze-ag.desktop "$pkgdir/usr/share/applications"
62
63 cd $LIBDIR
64 rm -f md5 $pkgdir/md5.yaze-ag
65 find . -type f -exec /bin/md5sum -b {} >>$pkgdir/md5.yaze-ag \;
66 mv "$pkgdir/md5.yaze-ag" md5
67}
68

Scan history

Scanned at (UTC)SeverityRules
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 00:14:47 LOW 2
2026-07-22 00:29:32 LOW 2
2026-07-21 00:24:15 LOW 2
2026-07-20 00:19:49 LOW 2
2026-07-19 00:17:08 LOW 2
2026-07-18 00:14:48 LOW 2
2026-07-17 00:06:16 LOW 2
2026-07-16 00:05:41 LOW 2
2026-07-15 00:09:25 LOW 2

Report a package

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

0 / 4000
Your suggestion