aboutsummaryrefslogtreecommitdiffstats
path: root/community/luacheck/APKBUILD
blob: a2019b1a45d9d83f7e5c868cab767945b2baed3d (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
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=luacheck
pkgver=0.21.2
pkgrel=0
pkgdesc="A tool for linting and static analysis of Lua code"
url="https://github.com/mpeterv/luacheck"
arch="noarch"
license="MIT"
depends="lua lua-filesystem"
checkdepends="lua-busted"
source="$pkgname-$pkgver.tar.gz::https://github.com/mpeterv/$pkgname/archive/$pkgver.tar.gz"
builddir="$srcdir/$pkgname-$pkgver"

check() {
	cd "$builddir"
	busted .
}

package() {
	local lver=$(lua -e 'print(_VERSION:match("[%d%.]+"))')
	local lmod_dir="$pkgdir/usr/share/lua/$lver"

	cd "$builddir"

	mkdir -p "$lmod_dir"
	cp -r src/$pkgname "$lmod_dir"/

	install -D -m 755 bin/$pkgname.lua "$pkgdir"/usr/bin/$pkgname
}

sha512sums="f2edcd9463b4af3ea1cbe3652c395196ff21dc371ddcbec6d19ff64017d0fc541f5cbd642661ec2064502e61680c556deb186259d27b2294743152fb4e69dbb3  luacheck-0.21.2.tar.gz"