dedrunk
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
zero_votes_recent
Uploaded within the last 14 days with 2 or fewer community votes — little peer review so far.
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
# Maintainer: Christopher Sieh (stelzo) <stelzo@steado.de>
pkgname=dedrunk
pkgver=0.1.0
pkgrel=1
pkgdesc="Kalibr IMU calibration from MCAP recordings."
arch=('x86_64' 'aarch64')
url="https://codeberg.org/stelzo/dedrunk"
license=('MIT' 'Apache-2.0')
depends=('libgcc' 'glibc')
makedepends=('cargo')
options=('!lto' '!debug')
source=("$pkgname-$pkgver.tar.gz::$url/archive/v$pkgver.tar.gz")
sha256sums=('SKIP')
provides=('dedrunk')
conflicts=('dedrunk')
build() {
export CARGO_TARGET_DIR="$srcdir/target"
cd $srcdir/$pkgname
cargo build --release --locked
mkdir -p "$srcdir/completions"
"$CARGO_TARGET_DIR/release/dedrunk" completions bash > "$srcdir/completions/bash"
"$CARGO_TARGET_DIR/release/dedrunk" completions zsh > "$srcdir/completions/_zsh"
"$CARGO_TARGET_DIR/release/dedrunk" completions fish > "$srcdir/completions/fish"
}
package() {
install -Dm755 "$srcdir/target/release/dedrunk" "$pkgdir/usr/bin/dedrunk"
install -Dm644 "$srcdir/completions/bash" "$pkgdir/usr/share/bash-completion/completions/dedrunk"
install -Dm644 "$srcdir/completions/_zsh" "$pkgdir/usr/share/zsh/site-functions/_dedrunk"
install -Dm644 "$srcdir/completions/fish" "$pkgdir/usr/share/fish/vendor_completions.d/dedrunk.fish"
}
Scan history
| Scanned at (UTC) | Severity | Rules |
|---|---|---|
| 2026-08-25 21:28:32 | Low | 2 |