mirror of
https://github.com/archlinux/aur.git
synced 2026-02-07 04:41:00 +01:00
first commit r-ark-bin
This commit is contained in:
commit
5276defc8d
2 changed files with 45 additions and 0 deletions
18
.SRCINFO
Normal file
18
.SRCINFO
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
pkgbase = r-ark-bin
|
||||
pkgdesc = An R kernel
|
||||
pkgver = 0.1.228
|
||||
pkgrel = 1
|
||||
url = https://github.com/posit-dev/ark
|
||||
arch = x86_64
|
||||
license = MIT
|
||||
depends = gcc-libs
|
||||
depends = glibc
|
||||
conflicts = r-ark
|
||||
options = !debug
|
||||
source_x86_64 = r-ark-bin-0.1.228.tar.gz::https://github.com/posit-dev/ark/releases/download/0.1.228/ark-0.1.228-linux-x64.zip
|
||||
source_x86_64 = https://raw.githubusercontent.com/posit-dev/ark/refs/tags/0.1.228/LICENSE
|
||||
provides_x86_64 = r-ark=0.1.228
|
||||
sha256sums_x86_64 = 8a2b04c55eead1aa5ccfd3f38dd3b52d5ee81e7c4f15ced9e58fa88d8ba846cf
|
||||
sha256sums_x86_64 = 19713ea69a4231105033c381dc2145148d26eab51e0b7e458ef4e775db531863
|
||||
|
||||
pkgname = r-ark-bin
|
||||
27
PKGBUILD
Normal file
27
PKGBUILD
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
# Maintainer: novica <nnovica@gmail.com>
|
||||
|
||||
pkgname=r-ark-bin
|
||||
pkgver=0.1.228
|
||||
pkgrel=1
|
||||
pkgdesc="An R kernel"
|
||||
arch=('x86_64')
|
||||
url="https://github.com/posit-dev/ark"
|
||||
license=('MIT')
|
||||
depends=('gcc-libs' 'glibc')
|
||||
conflicts=('r-ark')
|
||||
options=('!debug')
|
||||
provides_x86_64=("r-ark=${pkgver}")
|
||||
source_x86_64=("${pkgname}-${pkgver}.tar.gz::https://github.com/posit-dev/ark/releases/download/${pkgver}/ark-${pkgver}-linux-x64.zip"
|
||||
"https://raw.githubusercontent.com/posit-dev/ark/refs/tags/${pkgver}/LICENSE")
|
||||
sha256sums_x86_64=('8a2b04c55eead1aa5ccfd3f38dd3b52d5ee81e7c4f15ced9e58fa88d8ba846cf'
|
||||
'19713ea69a4231105033c381dc2145148d26eab51e0b7e458ef4e775db531863')
|
||||
|
||||
|
||||
|
||||
package() {
|
||||
cd "$srcdir"
|
||||
|
||||
# Move the binary from the temporary install directory to the final location
|
||||
install -Dm755 "$srcdir/ark" "$pkgdir/usr/bin/r-ark"
|
||||
install -Dm644 LICENSE "${pkgdir}/usr/share/licenses/${pkgname}/LICENSE"
|
||||
}
|
||||
Loading…
Add table
Reference in a new issue