test(fixtures): add Arch package fixtures and prove Lua cross-validation probe

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <[email protected]>
This commit is contained in:
2026-08-19 16:30:35 -04:00
co-authored by Sisyphus
parent 57253f0523
commit 45831809f6
9 changed files with 106 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
pkgbase = mytool
pkgdesc = Example custom-build package
pkgver = 1.0
pkgrel = 1
url = https://example.org
arch = x86_64
depends = glibc
source = mytool-1.0.tar.gz
sha256sums = SKIP
pkgname = mytool
+20
View File
@@ -0,0 +1,20 @@
pkgname=mytool
pkgver=1.0
pkgrel=1
pkgdesc="Example custom-build package"
arch=(x86_64)
url="https://example.org"
depends=('glibc')
source=("mytool-1.0.tar.gz")
sha256sums=('SKIP')
build() {
cd "$srcdir"
./configure --prefix=/usr
make
}
package() {
cd "$srcdir"
make DESTDIR="$pkgdir" install
}