mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-13 20:52:20 +01:00
32 lines
651 B
Plaintext
32 lines
651 B
Plaintext
# Contributor:
|
|
# Maintainer:
|
|
pkgname=lua-filesystem
|
|
pkgver=1.4.2
|
|
pkgrel=1
|
|
pkgdesc="Lua library to complement the set of functions related to file systems"
|
|
url="http://www.keplerproject.org/luafilesystem/"
|
|
license="GPL"
|
|
depends=
|
|
makedepends="lua-dev"
|
|
install=
|
|
subpackages=
|
|
source="http://luaforge.net/frs/download.php/3931/luafilesystem-1.4.2.tar.gz"
|
|
|
|
_builddir="$srcdir"/luafilesystem-$pkgver
|
|
prepare() {
|
|
cd "$_builddir"
|
|
# apply patches here
|
|
}
|
|
|
|
build() {
|
|
cd "$_builddir"
|
|
make || return 1
|
|
}
|
|
|
|
package() {
|
|
cd "$_builddir"
|
|
make LUA_LIBDIR="$pkgdir"/usr/lib/lua/5.1 install
|
|
}
|
|
|
|
md5sums="8e7b2a9b899d669280456d0f95afd961 luafilesystem-1.4.2.tar.gz"
|