ragpilot

LOW
maintainer alikaya 0 votes scanned 2026-09-14 09:16:46.306722
View on AUR
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: Ali Kaya <alikayaa@gmail.com>
2pkgname=ragpilot
3pkgver=0.9.0
4pkgrel=1
5pkgdesc="Token-efficient, local-first code intelligence layer for AI coding agents over MCP"
6arch=('x86_64')
7url="https://github.com/alikaya/ragpilot"
8license=('MIT')
9depends=('glibc' 'libgcc' 'libstdc++' 'openssl')
10makedepends=('cargo')
11# makepkg's default LTO compiles ring's C sources to GCC LTO bitcode, which
12# rust-lld cannot link: the ort-sys build script fails with undefined
13# ring_core_* symbols.
14options=('!lto' '!debug')
15optdepends=('qdrant: vector database the index is stored in (or run qdrant in Docker)'
16 'claude-code: compiler engine for the second brain')
17source=("$pkgname-$pkgver.tar.gz::$url/archive/refs/tags/v$pkgver.tar.gz")
18# Filled in by `updpkgsums` once the v$pkgver tag is on GitHub.
19sha256sums=('d51f636e570bca3be924d95e9a3fda9819214e417f297424087a1b156c7aca67')
20
21prepare() {
22 cd "$pkgname-$pkgver"
23 export RUSTUP_TOOLCHAIN=stable
24 cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
25}
26
27build() {
28 cd "$pkgname-$pkgver"
29 export RUSTUP_TOOLCHAIN=stable
30 export CARGO_TARGET_DIR=target
31 # The fastembed/ort build script downloads the ONNX Runtime it links
32 # statically, so this step needs network access even with --frozen.
33 cargo build --frozen --release
34}
35
36package() {
37 cd "$pkgname-$pkgver"
38 install -Dm755 "target/release/$pkgname" "$pkgdir/usr/bin/$pkgname"
39 install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
40 install -Dm644 README.md "$pkgdir/usr/share/doc/$pkgname/README.md"
41}
42

Scan history

Scanned at (UTC)SeverityRules
2026-09-14 09:16:46 Low 1

Report a package

Reports go to the AURWatch maintainer (one person) and are read by hand. No login required.

0 / 4000
Your suggestion