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

22 lines
758 B
Text
Raw Normal View History

2023-07-23 20:29:52 +05:30
# Maintainer: Erica Marigold <hi@devcomp.xyz>
2023-07-28 12:51:00 +05:30
pkgname=lune-bin
2024-10-08 06:37:01 +01:00
pkgver=0.8.9
2023-08-10 07:32:22 +05:30
pkgrel=1
2023-07-28 12:51:00 +05:30
pkgdesc="[Precompiled Binaries] A standalone Luau script runtime"
2023-08-05 12:31:57 +05:30
arch=(x86_64 aarch64)
2023-07-28 12:51:00 +05:30
conflicts=(lune lune-git)
url="https://lune-org.github.io/docs"
2023-08-05 12:31:57 +05:30
license=(MPL2)
depends=(glibc)
provides=(lune)
conflicts=(lune)
2023-07-23 20:29:52 +05:30
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")
2024-10-08 06:37:01 +01:00
sha256sums_x86_64=('eb30bdde967ba97951a4e0cafa0a197396ddd68dfc58e1b60349129c178eee8b')
sha256sums_aarch64=('913b07e1c42b8f8fc9e11a1f9d8b07e903e97efcf42b109d60326e85f5cc3cb7')
2023-07-23 20:29:52 +05:30
package() {
2024-04-16 15:15:54 +05:30
install -Dm755 -t "$pkgdir/usr/bin" lune
2023-07-23 20:29:52 +05:30
}