sashfold-bin

LOW
maintainer codingncaffeine 0 votes scanned 2026-09-17 00:27:14.276658
View on AUR
Why flagged

The package installs a prebuilt binary from the project's official GitHub release, which is a normal AUR practice; the binary is not executed at build time, and the source is verifiable via checksum, posing no immediate danger.

Triggered rules

Low Few votes, recently uploaded zero_votes_recent

Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.

Low AI review llm_review

An AI model (qwen/qwen3-235b-a22b-2507) reviewed this and agrees it is LOW (confidence 95%): The package installs a prebuilt binary from the project's official GitHub release, which is a normal AUR practice; the binary is not executed at build time, and the source is verifiable via checksum, posing no immediate danger.

PKGBUILD

1# Maintainer: codingncaffeine <codingncaffeine@users.noreply.github.com>
2# The Linux download of each release, as it ships: the binary with its
3# themes, blocklists note and icon under /opt/sashfold — the engine looks for
4# those beside the executable it was started as — a wrapper on PATH, the
5# desktop entry and the icon sizes. The binary imports only libc and libm.
6pkgname=sashfold-bin
7pkgver=0.1.0
8pkgrel=1
9pkgdesc="A web browser engine written from scratch, down to its own TLS client and Wayland window"
10arch=('x86_64')
11url="https://sashfold.com"
12license=('BSD-2-Clause')
13depends=('glibc')
14provides=('sashfold')
15conflicts=('sashfold')
16source=("sashfold-${pkgver}-linux-x64.tar.gz::https://github.com/codingncaffeine/Sashfold/releases/download/v${pkgver}/sashfold-${pkgver}-linux-x64.tar.gz")
17sha256sums=('721377bf00b663713ec5424c11636d037edb72067ef0b43b76f3546d09eda802')
18
19package() {
20 local staged="${srcdir}/sashfold-${pkgver}-linux-x64"
21 install -Dm755 "${staged}/sashfold" "${pkgdir}/opt/sashfold/sashfold"
22 install -Dm644 "${staged}/themes/"*.json -t "${pkgdir}/opt/sashfold/themes"
23 install -Dm644 "${staged}/blocklists/README.md" -t "${pkgdir}/opt/sashfold/blocklists"
24 install -Dm644 "${staged}/assets/icon.png" -t "${pkgdir}/opt/sashfold/assets"
25 install -Dm755 /dev/stdin "${pkgdir}/usr/bin/sashfold" <<'EOF'
26#!/bin/sh
27exec /opt/sashfold/sashfold "$@"
28EOF
29 install -Dm644 "${staged}/packaging/linux/sashfold.desktop" -t "${pkgdir}/usr/share/applications"
30 local size
31 for size in 16 22 24 32 48 64 128 256 512; do
32 install -Dm644 "${staged}/assets/icons/hicolor/${size}x${size}/apps/sashfold.png" \
33 "${pkgdir}/usr/share/icons/hicolor/${size}x${size}/apps/sashfold.png"
34 done
35 install -Dm644 "${staged}/LICENSE" "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
36 install -Dm644 "${staged}/README.md" -t "${pkgdir}/usr/share/doc/${pkgname}"
37}
38

Scan history

Scanned at (UTC)SeverityRules
2026-09-17 00:27:14 Low 2
2026-09-16 23:24:19 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