aboutsummaryrefslogtreecommitdiffstats
path: root/testing/lua-ljsyscall/APKBUILD
blob: 85d4e20ae418e0e5d75cc663f6ae42530d04961d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Contributor: Michael Zuo <muh.muhten@gmail.com>
# Maintainer: Michael Zuo <muh.muhten@gmail.com>
pkgname=lua-ljsyscall
pkgver=0.10
pkgrel=0
pkgdesc="LuaJIT Unix syscall FFI"
url="http://www.myriabit.com/ljsyscall/"
arch="all"
license="MIT"
depends=""
makedepends="luajit"
source="${pkgname#lua-}-$pkgver.tar.gz::https://github.com/justincormack/ljsyscall/archive/v$pkgver.tar.gz"
options="!archcheck"

_builddir="$srcdir/${pkgname#lua-}-$pkgver"
build() {
	cd "$_builddir"
	find syscall/* -maxdepth 0 \
		-type d \
		-not -name linux \
		-not -name shared \
		-exec rm -r {} +
	# we don't target mips, so no special case
	find -H syscall/linux/* -maxdepth 0 \
		-type d \
		-not -name "`luajit -e 'print(jit.arch)'`" \
		-exec rm -r {} +
}

package() {
	cd "$_builddir"
	mkdir -p "$pkgdir/usr/share/lua/5.1"
	cp -a syscall.lua syscall "$pkgdir/usr/share/lua/5.1"
}

md5sums="4a9a4ba447ade992e18a598722fce559  ljsyscall-0.10.tar.gz"
sha256sums="9b5ba2b5798c5bc33aa2158f3b44f730de12497c195764aa1bc3d3f1244df198  ljsyscall-0.10.tar.gz"
sha512sums="f2ed03ea2c524e3d8de1d80906b55029c6448cbbd83249c780f0e153875a84fd1af6cf37889242df31c1259cac3cab3ec7bdaf08b26ff75af25406a821b45945  ljsyscall-0.10.tar.gz"