r-savvy-cli-bin

LOW
maintainer Yousa-Mirage 0 votes scanned 2026-09-21 09:34:45.899251
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: Yousa-Mirage <Yousa-Mirage@foxmail.com>
2
3pkgname=r-savvy-cli-bin
4pkgver=0.11.0
5pkgrel=1
6pkgdesc='CLI for the savvy framework for building R packages with Rust (prebuilt binary)'
7arch=('x86_64' 'aarch64')
8url='https://github.com/yutannihilation/savvy'
9license=('MIT')
10
11depends=(
12 'gcc-libs'
13 'glibc'
14)
15
16provides=(
17 'r-savvy-cli'
18)
19
20conflicts=(
21 'r-savvy-cli'
22)
23
24source=(
25 "LICENSE-${pkgver}.md::https://raw.githubusercontent.com/yutannihilation/savvy/v${pkgver}/LICENSE.md"
26)
27
28source_x86_64=(
29 "https://github.com/yutannihilation/savvy/releases/download/v${pkgver}/savvy-cli-x86_64-unknown-linux-gnu.tar.xz"
30)
31
32source_aarch64=(
33 "https://github.com/yutannihilation/savvy/releases/download/v${pkgver}/savvy-cli-aarch64-unknown-linux-gnu.tar.xz"
34)
35
36sha256sums=(
37 'b88d82e847cbb64a9b7dc0587af1849f6dc3edfa0201dda5a29613cb34268247'
38)
39
40sha256sums_x86_64=(
41 '09925acd1af92771a1bb6a0a5f709346ac08142819f4820d043cd4842e6cd7cf'
42)
43
44sha256sums_aarch64=(
45 '7f1a471c148d66d7e2a6775e483f53592e69cba6ab8cd3254e97b6db66e492eb'
46)
47
48package() {
49 local _target
50
51 case "$CARCH" in
52 x86_64)
53 _target='x86_64-unknown-linux-gnu'
54 ;;
55 aarch64)
56 _target='aarch64-unknown-linux-gnu'
57 ;;
58 *)
59 error "Unsupported architecture: $CARCH"
60 return 1
61 ;;
62 esac
63
64 install -Dm755 \
65 "$srcdir/savvy-cli-${_target}/savvy-cli" \
66 "$pkgdir/usr/bin/savvy-cli"
67
68 install -Dm644 \
69 "$srcdir/LICENSE-${pkgver}.md" \
70 "$pkgdir/usr/share/licenses/$pkgname/LICENSE.md"
71}
72

Scan history

Scanned at (UTC)SeverityRules
2026-09-21 09:34:45 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