linearfs-bin
maintainer jra3
· 0 votes
· scanned 2026-08-03 00:08:14.047287
LOW
View on AUR ↗
Why flagged
The package installs a prebuilt binary from the project's official GitHub releases, which is a normal practice for Go applications; the source is verifiable via signed checksums and the project is legitimate, though the low vote count and recent upload are noted but not inherently dangerous.
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 releases, which is a normal practice for Go applications; the source is verifiable via signed checksums and the project is legitimate, though the low vote count and recent upload are noted but not inherently dangerous.
PKGBUILD
1
# Maintainer: John Allen <github@porcnick.com>
2
pkgname=linearfs-bin
3
pkgver=0.1.1
4
pkgrel=1
5
pkgdesc="Mount your Linear workspace as a FUSE filesystem — browse and edit issues as markdown (prebuilt binary)"
6
arch=('x86_64' 'aarch64')
7
url="https://github.com/jra3/linear-fuse"
8
license=('MIT')
9
depends=('fuse3')
10
provides=('linearfs')
11
conflicts=('linearfs')
12
# The release binary is already stripped (goreleaser -s -w); re-stripping a Go
13
# binary can drop its build info, so leave it as shipped. !debug because there
14
# are no debug symbols to split out of a stripped prebuilt binary.
15
options=('!strip' '!debug')
16
install="$pkgname.install"
17
source_x86_64=("linearfs-$pkgver-x86_64.tar.gz::$url/releases/download/v$pkgver/linearfs_${pkgver}_linux_amd64.tar.gz")
18
source_aarch64=("linearfs-$pkgver-aarch64.tar.gz::$url/releases/download/v$pkgver/linearfs_${pkgver}_linux_arm64.tar.gz")
19
sha256sums_x86_64=('cab935c955fb26c1e655b3e8a2222951e0d04f75466e93b379d0c2cd0bd3f0bd')
20
sha256sums_aarch64=('0d5ed31b69ffca9f0b54b55617c72bc67f1d47b411e80641145dc0a8ddace2fe')
21
22
package() {
23
install -Dm755 linearfs "$pkgdir/usr/bin/linearfs"
24
25
# Ship the systemd *user* service, repointed at the packaged binary. The
26
# in-repo unit runs from %h/.local/bin (the from-source install location);
27
# a pacman-installed binary lives in /usr/bin. Everything else (the
28
# %h/.config/linearfs/env EnvironmentFile, the mount preflight) is unchanged.
29
sed 's|%h/.local/bin/linearfs|/usr/bin/linearfs|' \
30
contrib/systemd/linearfs.service > linearfs.service.pkg
31
install -Dm644 linearfs.service.pkg "$pkgdir/usr/lib/systemd/user/linearfs.service"
32
33
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
34
for doc in README.md INSTALL.md KNOWN_ISSUES.md; do
35
install -Dm644 "$doc" "$pkgdir/usr/share/doc/$pkgname/$doc"
36
done
37
}
38
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 19:35:21 | LOW | 2 |