mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-04-30 10:01:37 +02:00
Lua libraries for extended operations on tables, lists and strings https://github.com/stevedonovan/Penlight
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
|
|
_luaver=5.2
|
|
pkgname=lua${_luaver}-penlight
|
|
pkgver=1.2.0
|
|
pkgrel=0
|
|
pkgdesc="Lua libraries for extended operations on tables, lists and strings"
|
|
url="https://github.com/stevedonovan/Penlight"
|
|
arch="noarch"
|
|
license="GPL"
|
|
depends="lua${_luaver}-filesystem"
|
|
makedepends="wget"
|
|
install=
|
|
subpackages="$pkgname-doc"
|
|
source="penlight-$pkgver.tar.gz::https://github.com/stevedonovan/Penlight/archive/$pkgver.tar.gz"
|
|
|
|
_builddir="$srcdir"/Penlight-$pkgver
|
|
|
|
build() {
|
|
return 0
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
mkdir -p "$pkgdir"/usr/share/lua/$_luaver/ \
|
|
"$pkgdir"/usr/share/doc/$pkgname
|
|
cp -r lua/pl "$pkgdir"/usr/share/lua/$_luaver/ || return 1
|
|
cp -r doc/* "$pkgdir"/usr/share/doc/$pkgname/ || return 1
|
|
cp -r examples "$pkgdir"/usr/share/doc/$pkgname/ || return 1
|
|
}
|
|
|
|
md5sums="fa213fa3aa3e2c920af8c4b28bdf2a1e penlight-1.2.0.tar.gz"
|
|
sha256sums="e0e7cec321f481f39472e8d63b258327d7ebae19c3e39e5956dcc821aa3b29c0 penlight-1.2.0.tar.gz"
|
|
sha512sums="a5081169fb9237b84c98c892f82dbd24d186b2ce85cf9bd650fdc924a26403c1087dd8bae5ff2bfd1d99c4b146bc41d2914f36f7ceb85fa82f882fb76168e3e2 penlight-1.2.0.tar.gz"
|