mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-10 19:22:10 +01:00
31 lines
749 B
Plaintext
31 lines
749 B
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
pkgname=lua-penlight
|
|
pkgver=0.9.5
|
|
pkgrel=0
|
|
pkgdesc="Lua libraries for extended operations on tables, lists and strings"
|
|
url="http://penlight.luaforge.net/"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="lua-filesystem"
|
|
makedepends="wget"
|
|
install=
|
|
subpackages="$pkgname-doc"
|
|
source="http://stevedonovan.github.com/files/penlight-$pkgver.zip"
|
|
|
|
_builddir="$srcdir"/Penlight
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
mkdir -p "$pkgdir"/usr/share/lua/5.1/ \
|
|
"$pkgdir"/usr/share/doc/$pkgname
|
|
cp -r lua/pl "$pkgdir"/usr/share/lua/5.1/
|
|
cp -r docs/* "$pkgdir"/usr/share/doc/$pkgname/
|
|
cp -r examples "$pkgdir"/usr/share/doc/$pkgname/
|
|
}
|
|
|
|
md5sums="dfef6853fba91bea41622e396242ef01 penlight-0.9.5.zip"
|