summaryrefslogtreecommitdiffstats
path: root/testing/lua5.2-cjson/APKBUILD
blob: 82a7ae2d178cb063795bbfdf64f1301c9cd1cb09 (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
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
_luaver=5.2
pkgname=lua${_luaver}-cjson
pkgver=2.1.0
pkgrel=0
pkgdesc="fast JSON parsing and encoding support for Lua $_luaver"
url="http://www.kyne.com.au/~mark/software/lua-cjson.php"
arch="all"
license="MIT"
depends=""
makedepends="lua${_luaver}-dev"
install=""
subpackages=""
source="http://www.kyne.com.au/~mark/software/download/lua-cjson-$pkgver.tar.gz"

_builddir="$srcdir"/lua-cjson-$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
	sed -i -e "/^LUA_VERSION\s*=/s/=.*/= $_luaver/" Makefile
}

build() {
	cd "$_builddir"
	make CFLAGS_EXTRA= PREFIX=/usr|| return 1
}

package() {
	cd "$_builddir"
	make PREFIX=/usr DESTDIR="$pkgdir" install || return 1
	rm -f "$pkgdir"/usr/lib/*.la
}

md5sums="24f270663e9f6ca8ba2a02cef19f7963  lua-cjson-2.1.0.tar.gz"
sha256sums="51bc69cd55931e0cba2ceae39e9efa2483f4292da3a88a1ed470eda829f6c778  lua-cjson-2.1.0.tar.gz"
sha512sums="4343513b942f2ed98dc1ea6d7e852303bc1263f8acc5c70c8d674aec7adfc8279c5af7d5173a417b6f9a74543b8f6c8f98742d002f4f75832bbf23bb5a30ad2f  lua-cjson-2.1.0.tar.gz"