why
LOW
maintainer biggynb
0 votes
scanned 2026-09-25 03:10:18.761179
Why flagged
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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.
PKGBUILD
1
# Maintainer: bjl32 <bjl32@users.noreply.github.com>
2
pkgname=why
3
pkgver=0.1.0
4
pkgrel=1
5
pkgdesc='A Linux troubleshooter that explains why a program does not work'
6
arch=('x86_64' 'aarch64')
7
url='https://github.com/bjl32/why'
8
license=('MIT')
9
depends=('gcc-libs' 'glibc')
10
makedepends=('cargo')
11
source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
12
# Run `updpkgsums` once the v$pkgver tag exists; it fills this in for you.
13
sha256sums=('68e096e63b36f3efab7077de6e750daeafb2113b081dde13010f503fed240188')
14
15
build() {
16
cd "$pkgname-$pkgver"
17
# No dependencies, so the build is fully hermetic.
18
cargo build --release --locked --offline
19
}
20
21
check() {
22
cd "$pkgname-$pkgver"
23
cargo test --release --locked --offline
24
}
25
26
package() {
27
cd "$pkgname-$pkgver"
28
install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
29
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
30
install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
31
install -Dm644 CONTRIBUTING.md "$pkgdir/usr/share/doc/$pkgname/CONTRIBUTING.md"
32
install -Dm644 TODO "$pkgdir/usr/share/doc/$pkgname/TODO"
33
}
34
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-25 03:10:18 | Low | 1 |