summaryrefslogblamecommitdiff
path: root/user/luarocks/APKBUILD
blob: 89ef56bfaccf57fca4a05dd78c7d78bf983110bf (plain) (tree)




























                                                                                                                                                                    
# Contributor: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
# Maintainer: Kiyoshi Aman <kiyoshi.aman+adelie@gmail.com>
pkgname=luarocks
pkgver=3.0.4
pkgrel=0
pkgdesc="Package manager for Lua software"
url="https://luarocks.github.io"
arch="noarch"
options="!check" # no test suite
license="MIT"
makedepends="lua5.3-dev"
source="http://luarocks.github.io/luarocks/releases/luarocks-$pkgver.tar.gz"

build() {
	cd "$builddir"
	./configure \
		--prefix=/usr \
		--sysconfdir=/etc \
		--lua-version=5.3 \
		--rocks-tree=/usr/share/lua/5.3
	make build
}

package() {
	cd "$builddir"
	make DESTDIR="$pkgdir" install
}

sha512sums="65a28f0dca4fc45a0ee413493d0e4287de9c495b27c0366d955a16d03adf94b36cb9dbeda00fb74045809eb5048b78ea5158257b5ddafa924dc8ff0f017e95f8  luarocks-3.0.4.tar.gz"