This commit is contained in:
Dax Ravi
2022-07-05 21:57:07 -04:00
commit 0a5c396d44
2 changed files with 28 additions and 0 deletions

13
.SRCINFO Normal file
View File

@@ -0,0 +1,13 @@
pkgbase = bun-bin
pkgdesc = Incredibly fast JavaScript runtime, bundler, transpiler and package manager all in one.
pkgver = 0.1.1
pkgrel = 1
url = https://github.com/Jarred-Sumner/bun
arch = x86_64
license = MIT
provides = bun=0.1.1
provides = bun
source = https://github.com/Jarred-Sumner/bun/releases/download/bun-v0.1.1/bun-linux-x64.zip
sha512sums = d40edb955e5d3ab4cebe525140fe4312b30f7db57362269a6a979c96d19209d8b8e886b69cf970f4a0c9618bb444cefaa4d84e31ff7abcdd2f245cfd50e525e5
pkgname = bun-bin

15
PKGBUILD Normal file
View File

@@ -0,0 +1,15 @@
pkgname=bun-bin
pkgver=0.1.1
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"
}