dedrunk

LOW
maintainer stelzo 0 votes scanned 2026-08-25 21:28:32.222906
View on AUR
Why flagged

The package builds from source hosted on a plausible project-owned domain (codeberg.org), uses cargo for compilation, and installs only the resulting binary and completions; the 'SKIP' checksum is a quality issue but the source is verifiable and no remote code execution or malicious behavior is present.

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 builds from source hosted on a plausible project-owned domain (codeberg.org), uses cargo for compilation, and installs only the resulting binary and completions; the 'SKIP' checksum is a quality issue but the source is verifiable and no remote code execution or malicious behavior is present.

PKGBUILD

1# Maintainer: Christopher Sieh (stelzo) <stelzo@steado.de>
2pkgname=dedrunk
3pkgver=0.1.0
4pkgrel=1
5pkgdesc="Kalibr IMU calibration from MCAP recordings."
6arch=('x86_64' 'aarch64')
7url="https://codeberg.org/stelzo/dedrunk"
8license=('MIT' 'Apache-2.0')
9depends=('libgcc' 'glibc')
10makedepends=('cargo')
11options=('!lto' '!debug')
12source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
13sha256sums=('SKIP')
14provides=('dedrunk')
15conflicts=('dedrunk')
16
17build() {
18 export CARGO_TARGET_DIR="$srcdir/target"
19 cd $srcdir/$pkgname
20 cargo build --release --locked
21
22 mkdir -p "$srcdir/completions"
23 "$CARGO_TARGET_DIR/release/dedrunk" completions bash > "$srcdir/completions/bash"
24 "$CARGO_TARGET_DIR/release/dedrunk" completions zsh > "$srcdir/completions/_zsh"
25 "$CARGO_TARGET_DIR/release/dedrunk" completions fish > "$srcdir/completions/fish"
26}
27
28package() {
29 install -Dm755 "$srcdir/target/release/dedrunk" "$pkgdir/usr/bin/dedrunk"
30
31 install -Dm644 "$srcdir/completions/bash" "$pkgdir/usr/share/bash-completion/completions/dedrunk"
32 install -Dm644 "$srcdir/completions/_zsh" "$pkgdir/usr/share/zsh/site-functions/_dedrunk"
33 install -Dm644 "$srcdir/completions/fish" "$pkgdir/usr/share/fish/vendor_completions.d/dedrunk.fish"
34}
35

Scan history

Scanned at (UTC)SeverityRules
2026-08-25 21:28:32 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