blob: ea8fc1ae2efd62e4166adc317bf17ddee8cd8a51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Maintainer: novica <nnovica@gmail.com>
pkgname=rv-bin
pkgver=0.20.0
pkgrel=1
pkgdesc="A declarative R package manager"
arch=('x86_64')
url="https://github.com/a2-ai/rv"
license=('MIT')
depends=('libgcc' 'glibc')
conflicts=('rv')
options=('!debug')
provides_x86_64=("rv=${pkgver}")
source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/a2-ai/rv/releases/download/v${pkgver}/rv-v${pkgver}-$CARCH-unknown-linux-gnu.tar.gz"
"https://raw.githubusercontent.com/a2-ai/rv/refs/tags/v${pkgver}/LICENSE")
package() {
cd "$srcdir"
# Move the binary from the temporary install directory to the final location
install -Dm755 "$srcdir/rv" "$pkgdir/usr/bin/rv"
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
}
sha256sums_x86_64=('78cb8b9df923681d746cc6854062e2ddf9933165ff1f55c696cdd395c45bb28a'
'74fe1333138eafb27da61b5066f2f8039448ab87df0ce2d07982629c2195a520')
|