blockwork

LOW
maintainer ethanstokes 0 votes scanned 2026-09-09 00:04:09.106193
View on AUR
Why flagged

The package builds from its own official GitHub source tarball with a verified checksum; pnpm install runs against the project's own ui/ directory (standard Tauri frontend dependency fetch), not an undeclared external package, so the flagged pattern is a false positive. The few-votes/new-upload concern is minor and not a technical risk indicator.

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 downgraded a static finding llm_review

The static rules flagged this MEDIUM, but an AI model (anthropic/claude-sonnet-4.6) reviewed the full PKGBUILD and judged it LOW (confidence 70%): The package builds from its own official GitHub source tarball with a verified checksum; pnpm install runs against the project's own ui/ directory (standard Tauri frontend dependency fetch), not an undeclared external package, so the flagged pattern is a false positive. The few-votes/new-upload concern is minor and not a technical risk indicator.

1 higher static finding superseded - not the current verdict (shown for transparency)
Medium npm/yarn/pnpm install of an undeclared external package npm_install_external

Runs `npm/yarn/pnpm install <package>` for a package not in source=(), pulling unpinned, unreviewed code at build time. Severity downgraded: the package declares/looks like a Node.js consumer, where build-time installs are expected.

  • PKGBUILD:25 pnpm install --dir ui

PKGBUILD

1 offending line(s) highlighted
1# Maintainer: Ethan Stokes <erstokes10@gmail.com>
2
3pkgname=blockwork
4pkgver=0.5.0
5pkgrel=1
6pkgdesc='A Tauri app to visually create and run macros on Windows, Linux, and macOS.'
7url='https://github.com/EthanRStokes/Blockwork'
8arch=('x86_64')
9license=('GPL-3.0-only')
10makedepends=('cargo' 'git' 'pnpm')
11depends=(
12 'gtk3' 'nss' 'alsa-lib' 'hicolor-icon-theme' 'webkit2gtk-4.1'
13 'libgcc' 'glibc'
14)
15conflicts=('macros')
16provides=('macros')
17source=("$pkgname-$pkgver.tar.gz::https://github.com/EthanRStokes/Blockwork/archive/refs/tags/${pkgver}.tar.gz")
18sha256sums=('134026e0f56782461c6ab8f9146e7c1917a4738e01eb147df43583c84f4e016c')
19options=('!lto')
20
21prepare() {
22 cd "$srcdir/Blockwork-$pkgver"
23
24 cargo fetch
25 pnpm install --dir ui
26}
27
28build() {
29 cd "$srcdir/Blockwork-$pkgver"
30 export BLOCKWORK_PNPM_OFFLINE=1
31 cargo build --release --frozen
32}
33
34package() {
35 cd "$srcdir/Blockwork-$pkgver"
36
37 local libdir="$pkgdir/usr/lib/blockwork"
38
39 # Binary's RUNPATH is $ORIGIN, so the CEF runtime payload (libcef.so,
40 # GL/Vulkan shims, *.pak, icudtl.dat, locales/, ...) has to live alongside
41 # it in a private libdir, not /usr/bin.
42 install -Dm755 "target/release/blockwork" "$libdir/blockwork"
43 install -Dm755 "target/release/libcef.so" "$libdir/libcef.so"
44 install -Dm755 "target/release/libEGL.so" "$libdir/libEGL.so"
45 install -Dm755 "target/release/libGLESv2.so" "$libdir/libGLESv2.so"
46 install -Dm755 "target/release/libvk_swiftshader.so" "$libdir/libvk_swiftshader.so"
47 install -Dm755 "target/release/libvulkan.so.1" "$libdir/libvulkan.so.1"
48 install -Dm755 "target/release/chrome-sandbox" "$libdir/chrome-sandbox"
49 install -Dm644 "target/release/vk_swiftshader_icd.json" "$libdir/vk_swiftshader_icd.json"
50 install -Dm644 "target/release/icudtl.dat" "$libdir/icudtl.dat"
51 install -Dm644 "target/release/v8_context_snapshot.bin" "$libdir/v8_context_snapshot.bin"
52 install -Dm644 "target/release/chrome_100_percent.pak" "$libdir/chrome_100_percent.pak"
53 install -Dm644 "target/release/chrome_200_percent.pak" "$libdir/chrome_200_percent.pak"
54 install -Dm644 "target/release/resources.pak" "$libdir/resources.pak"
55 cp -r "target/release/locales" "$libdir/locales"
56
57 install -d "$pkgdir/usr/bin"
58 ln -sf /usr/lib/blockwork/blockwork "$pkgdir/usr/bin/blockwork"
59
60 install -Dm644 "res/icons/blockwork.png" "$pkgdir"/usr/share/icons/hicolor/256x256/apps/blockwork.png
61 install -Dm644 "res/blockwork.desktop" "$pkgdir"/usr/share/applications/blockwork.desktop
62}
63

Scan history

Scanned at (UTC)SeverityRules
2026-09-09 00:04:09 Low 3
2026-09-08 21:20:15 Low 3
2026-09-08 21:18:22 Medium 2

Report a package

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

0 / 4000
Your suggestion