lune-packaging/package/aur/lune-bin/PKGBUILD

22 lines
759 B
Text
Raw Normal View History

2023-07-23 15:59:52 +01:00
# Maintainer: Erica Marigold <hi@devcomp.xyz>
2023-07-28 08:21:00 +01:00
pkgname=lune-bin
2023-10-06 06:37:22 +01:00
pkgver=0.7.8
2023-08-10 03:02:22 +01:00
pkgrel=1
2023-07-28 08:21:00 +01:00
pkgdesc="[Precompiled Binaries] A standalone Luau script runtime"
2023-08-05 08:01:57 +01:00
arch=(x86_64 aarch64)
2023-07-28 08:21:00 +01:00
conflicts=(lune lune-git)
url="https://lune-org.github.io/docs"
2023-08-05 08:01:57 +01:00
license=(MPL2)
depends=(glibc)
provides=(lune)
conflicts=(lune)
2023-07-23 15:59:52 +01:00
source_x86_64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-x86_64.zip")
source_aarch64=("https://github.com/filiptibell/lune/releases/download/v$pkgver/lune-$pkgver-linux-aarch64.zip")
2023-10-06 06:37:22 +01:00
sha256sums_x86_64=('b62a448f39c0385d0303ccf88533a54d3d42af7386b30ec706584563745a00af')
sha256sums_aarch64=('6724e6e4e459e15c426f23ed8211ec5369679ba6a96bf006f0ed6c99d9617d61')
2023-07-23 15:59:52 +01:00
package() {
2023-07-28 08:21:00 +01:00
install -Dm755 -t "$pkgdir/usr/bin" lune
2023-07-23 15:59:52 +01:00
}