blob: 4885898eb4001d8dd126fea9fd24c60566c01b59 (
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
|
# Maintainer: David Harrigan <dharrigan [@] gmail [dot] com>
# Contributor: Rohan Jain <crodjer [@] protonmail [dot] com>
pkgname=babashka-bin
pkgver=1.12.218
pkgrel=1
pkgdesc='A Clojure babashka for the grey areas of Bash.'
arch=('x86_64' 'aarch64')
url='https://github.com/borkdude/babashka'
license=('EPL')
options=(!debug)
depends=('gcc-libs' 'zlib')
provides=("${pkgname%-bin}")
conflicts=("${pkgname%-bin}")
source_aarch64=("${pkgname}-${pkgver}-linux-aarch64-static.tar.gz::${url}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux-aarch64-static.tar.gz")
source_x86_64=("${pkgname}-${pkgver}-linux-amd64-static.tar.gz::${url}/releases/download/v${pkgver}/${pkgname%-bin}-${pkgver}-linux-amd64-static.tar.gz")
sha256sums_x86_64=('7bd028cc794732ffde3da31ce4379840893c8e54f1046f92a8dfc4f4b3cddaf8')
sha256sums_aarch64=('e9e9190afb0dd33abbcd3aa6c1382184a88a5498800324719be3be6e1aa68302')
package() {
install -Dm755 "${srcdir}/bb" "${pkgdir}/usr/bin/bb"
}
|