r-savvy-cli-bin
LOW
maintainer Yousa-Mirage
0 votes
scanned 2026-09-21 09:34:45.899251
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
3
pkgname=r-savvy-cli-bin
4
pkgver=0.11.0
5
pkgrel=1
6
pkgdesc='CLI for the savvy framework for building R packages with Rust (prebuilt binary)'
7
arch=('x86_64' 'aarch64')
8
url='https://github.com/yutannihilation/savvy'
9
license=('MIT')
10
11
depends=(
12
'gcc-libs'
13
'glibc'
14
)
15
16
provides=(
17
'r-savvy-cli'
18
)
19
20
conflicts=(
21
'r-savvy-cli'
22
)
23
24
source=(
25
"LICENSE-${pkgver}.md::https://raw.githubusercontent.com/yutannihilation/savvy/v${pkgver}/LICENSE.md"
26
)
27
28
source_x86_64=(
29
"https://github.com/yutannihilation/savvy/releases/download/v${pkgver}/savvy-cli-x86_64-unknown-linux-gnu.tar.xz"
30
)
31
32
source_aarch64=(
33
"https://github.com/yutannihilation/savvy/releases/download/v${pkgver}/savvy-cli-aarch64-unknown-linux-gnu.tar.xz"
34
)
35
36
sha256sums=(
37
'b88d82e847cbb64a9b7dc0587af1849f6dc3edfa0201dda5a29613cb34268247'
38
)
39
40
sha256sums_x86_64=(
41
'09925acd1af92771a1bb6a0a5f709346ac08142819f4820d043cd4842e6cd7cf'
42
)
43
44
sha256sums_aarch64=(
45
'7f1a471c148d66d7e2a6775e483f53592e69cba6ab8cd3254e97b6db66e492eb'
46
)
47
48
package() {
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) | Severity | Rules |
|---|---|---|
| 2026-09-21 09:34:45 | Low | 1 |