Files
bun-bin/PKGBUILD
Dax Ravi 58f278f371 0.1.2
2022-07-08 14:21:08 -04:00

16 lines
568 B
Bash
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
pkgname=bun-bin
pkgver=0.1.2
pkgrel=1
pkgdesc="Incredibly fast JavaScript runtime, bundler, transpiler and package manager all in one."
arch=('x86_64')
url="https://github.com/Jarred-Sumner/bun"
license=('MIT')
provides=("bun=$pkgver" 'bun')
source=("https://github.com/Jarred-Sumner/bun/releases/download/bun-v${pkgver}/bun-linux-x64.zip")
sha512sums=('d40edb955e5d3ab4cebe525140fe4312b30f7db57362269a6a979c96d19209d8b8e886b69cf970f4a0c9618bb444cefaa4d84e31ff7abcdd2f245cfd50e525e5')
package() {
install -Dm755 "./bun-linux-x64/bun" "${pkgdir}/usr/bin/bun"
}