uutils-bsdutils
LOW
maintainer Chocobo1
0 votes
scanned 2026-09-11 17:22:59.755085
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: Chocobo1 <chocobo1 AT archlinux DOT net>
2
3
pkgname=uutils-bsdutils
4
pkgver=0.0.1
5
pkgrel=1
6
pkgdesc="Rust reimplementation of the bsdutils project"
7
arch=('i686' 'x86_64')
8
url="https://github.com/uutils/bsdutils"
9
license=('MIT')
10
depends=('glibc' 'libgcc')
11
makedepends=('cargo')
12
source=("$pkgname-$pkgver-src.tar.gz::https://github.com/uutils/bsdutils/archive/refs/tags/$pkgver.tar.gz")
13
sha256sums=('4a04eacee7d7d2539770122e41d673b6ade82f72aa19e5f9d51a03d07734fbce')
14
15
16
prepare() {
17
cd "bsdutils-$pkgver"
18
19
if [ ! -f "Cargo.lock" ]; then
20
cargo update
21
fi
22
cargo fetch
23
}
24
25
check() {
26
cd "bsdutils-$pkgver"
27
28
#cargo test \
29
# --frozen
30
}
31
32
package() {
33
cd "bsdutils-$pkgver"
34
35
cargo install \
36
--frozen \
37
--no-track \
38
--root "$pkgdir/usr" \
39
--path .
40
41
install -Dm644 "LICENSE" -t "$pkgdir/usr/share/licenses/uutils-bsdutils"
42
}
43
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-09-11 17:22:59 | Low | 1 |