aboutsummaryrefslogtreecommitdiffstats
path: root/community/lua-turbo/APKBUILD
blob: 09a815ad0015ffe911fd828b8e963edec7ffaeb2 (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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Carlo Landmeter <clandmeter@gmail.com>

pkgname=lua-turbo
_jitver=2.1.0_beta3
pkgver=2.1.1
pkgrel=0
pkgdesc="a framework built for LuaJIT 2 and Linux"
url="http://www.turbolua.org/"
# luajit is not available for disabled arches
arch="all !s390x"
license="Apache-2.0"
depends="luajit ca-certificates lua5.1-cjson"
makedepends="libressl-dev util-linux"
# bundled tests dont work
options="!check"
install=""
subpackages="lua5.1-turbo:lua51_turbo:noarch"
source="$pkgname-$pkgver.tar.gz::https://github.com/kernelsauce/turbo/archive/v$pkgver.tar.gz
	0001-use-cjson-instead-of-JSON.lua.patch
	${pkgname}.initd
	${pkgname}.confd"

builddir="$srcdir/turbo-$pkgver"

prepare() {
	cd "$builddir"
	default_prepare
	# check if we are using the current luajit version
	if [ -r ../../../../main/luajit/APKBUILD ]; then
		local _currentjit=$(grep "^pkgver=" ../../../../main/luajit/APKBUILD)
		if [ "${_currentjit#*=}" != "$_jitver" ]; then
			die "luajit version does not match!"
		fi
	else
		die "cannot locate luajit APKBUILD!"
	fi
	# we need to fix the loading of libssl.
	# so we replace symlink with real filename
	sed -i -e \
		"s|os.getenv(\"TURBO_LIBSSL\") or \"ssl\"|\"$(readlink /usr/lib/libssl.so)\"|" \
		turbo/hash.lua
	sed -i -e \
		"s|os.getenv(\"TURBO_LIBSSL\") or \"ssl\"|\"$(readlink /usr/lib/libssl.so)\"|" \
		turbo/crypto_linux.lua
}

build() {
	cd "$builddir"
	export LUAJIT_VERSION="${_jitver/_/-}"
	make
}

lua51_turbo() {
	pkgdesc="$pkgdesc (lua 5.1 files)"
	mkdir -p "$subpkgdir/usr/share"
	mv "$pkgdir/usr/share/lua" \
		"$subpkgdir"/usr/share/
}

package() {
	cd "$builddir"
	make PREFIX="$pkgdir"/usr install
	install -Dm 755 "$srcdir"/${pkgname}.initd \
		$pkgdir/etc/init.d/$pkgname
	install -Dm 644 "$srcdir"/${pkgname}.confd \
		$pkgdir/etc/conf.d/$pkgname
	# remove ca-certificates
	rm -f "$pkgdir"/usr/share/*/turbo/ca-certificates.crt \
		"$pkgdir"/usr/share/*/*/turbo/ca-certificates.crt
}

sha512sums="207b630ce2b3cfa06266fdabaa82420bc04ecfff3998f04db080c8af14bea3d8b01433416f3a827fe2d2fdb8e72085e36956de5f812305b3fa77207dd4152d5b  lua-turbo-2.1.1.tar.gz
39d5b667e1e0410cce2cfbff21012eeef5059f4ce4e2ca7446420270084ad957d0df7f39cf8fd64e853fb8d43eed52abeb1866cbad6247dc554b7475671817d8  0001-use-cjson-instead-of-JSON.lua.patch
2e91d5dda33b4bf09667fd23c80a471e93605125a820c440c2b1b022b8bce6ab065493473b153f1fa1863e9655f6413dbe42dc983260da4ed8bee3b2e3743ec2  lua-turbo.initd
3d2816738a2ee615bb6523b6b0aff12a51062e56ade5dbaa4b1b63afda8dce0a532c099b8a03fe67d589058ac8a7d49434a68fb28d93b167a56c56acc7596fdb  lua-turbo.confd"