blob: 0944de32da475fe5b195bb8047f67f26d2e62579 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=lua-aports
pkgver=1.0.0
pkgrel=0
pkgdesc="Lua modules for parsing aports tree"
url="https://dev.alpinelinux.org/archive/lua-aports/"
arch="noarch"
license="MIT"
depends="lua5.2-cjson lua5.2-filesystem lua5.2-optarg lua5.2"
replaces="abuild"
source="https://dev.alpinelinux.org/archive/lua-aports/lua-aports-$pkgver.tar.xz
"
builddir="$srcdir/$pkgname-$pkgver"
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
sha512sums="67ea0bd93c7cf8fcfe175a6e90da6e1976e0ca6257b036ef43959a5a839cecc94ceb90a509ec270cb6cdaf4ef234c41adc7269d733ae6ad1c377ef9c4b261f0b lua-aports-1.0.0.tar.xz"
|