commit 0a5c396d4465595ff88ac59e758dd91ad5f37764 Author: Dax Ravi Date: Tue Jul 5 21:57:07 2022 -0400 v0.1.1 diff --git a/.SRCINFO b/.SRCINFO new file mode 100644 index 0000000..98af293 --- /dev/null +++ b/.SRCINFO @@ -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 diff --git a/PKGBUILD b/PKGBUILD new file mode 100644 index 0000000..4b45a35 --- /dev/null +++ b/PKGBUILD @@ -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" +}