chore(aur): remove old PKGBUILDs

This commit is contained in:
Erica Marigold 2024-06-23 18:14:17 +05:30
parent 37313be95e
commit cccda74417
No known key found for this signature in database
GPG key ID: 2768CC0C23D245D1
2 changed files with 0 additions and 64 deletions

View file

@ -1,44 +0,0 @@
# Maintainer: Erica Marigold <hi@devcomp.xyz>
pkgname=lune-git
pkgver=0.7.5
pkgrel=1
pkgdesc="GIT - A standalone Luau script runtime"
arch=('any')
url="https://github.com/filiptibell/lune"
license=('MPL')
makedepends=('just' 'rust')
provides=('lune')
conflicts=('lune')
source=("git+$url.git")
sha256sums=('SKIP')
prepare() {
cd "$srcdir/lune"
git submodule update --init
}
pkgver() {
cd "$srcdir/lune"
git rev-parse v$pkgver
}
build() {
cd "$srcdir/lune"
git checkout $pkgver
just build
}
check() {
cd "$srcdir/lune"
just test
}
package() {
cd "$srcdir/lune"
mkdir -p "$pkgdir/usr/bin"
mv ./target/release/lune "$pkgdir/usr/bin"
}

View file

@ -1,20 +0,0 @@
# Maintainer: Erica Marigold <hi@devcomp.xyz>
pkgname=lune
pkgver=0.7.5
pkgrel=1
pkgdesc="PRECOMPILED - A standalone Luau script runtime"
arch=('x86_64' 'aarch64')
url="https://github.com/filiptibell/lune"
license=('MPL')
provides=('lune')
conflicts=('lune-git')
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")
sha256sums_x86_64=('eaec8e6361c8f9b4e63f756cc9b83a94bbbba28b060e5338a144e499aae2881c')
sha256sums_aarch64=('dad5292299db3359c8676c8e294cb9b30105ad1a47f9d96ee99fa34f2684f4fd')
package() {
mkdir -p "$pkgdir/usr/bin"
mv "$srcdir/lune" "$pkgdir/usr/bin"
}