blob: 5c2009aee133c215132128f37cca717da2ba5ab0 (
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=arf-bin
pkgver=0.3.3
pkgrel=1
pkgdesc="A modern R console"
arch=('x86_64')
url="https://github.com/eitsupi/arf"
license=('MIT')
depends=('glibc' 'libgcc')
conflicts=('arf')
options=('!debug')
provides_x86_64=("arf=${pkgver}")
source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/eitsupi/arf/releases/download/v${pkgver}/arf-console-$CARCH-unknown-linux-gnu.tar.xz"
"https://raw.githubusercontent.com/eitsupi/arf/refs/tags/v${pkgver}/LICENSE.md")
package() {
cd "$srcdir"
# Move the binary from the temporary install directory to the final location
install -Dm755 "$srcdir/arf-console-$CARCH-unknown-linux-gnu/arf" "$pkgdir/usr/bin/arf"
install -Dm644 LICENSE.md "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.md"
}
sha256sums_x86_64=('7d1bdc82ac181b9a422a1274fffd390d9bda3e1d093ed617801786f8fe0821f7'
'b9ee24794ec15953578fd5d07bb323b47a01f03b6fd206429dbe34b1c638fa0f')
|