wok rev 17428

Add luafilesystem
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Dec 05 17:48:43 2014 +0100 (2014-12-05)
parents be5709551b21
children 44e98478354d
files luafilesystem/receipt
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/luafilesystem/receipt	Fri Dec 05 17:48:43 2014 +0100
     1.3 @@ -0,0 +1,27 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="luafilesystem"
     1.7 +VERSION="1.6.2"
     1.8 +CATEGORY="development"
     1.9 +SHORT_DESC="File System Library for the Lua Programming Language."
    1.10 +MAINTAINER="pascal.bellard@slitaz.org"
    1.11 +LICENSE="MIT"
    1.12 +TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.13 +WEB_SITE="http://keplerproject.github.io/luafilesystem/"
    1.14 +WGET_URL="https://github.com/keplerproject/$PACKAGE/archive/v${VERSION//./_}.tar.gz"
    1.15 +
    1.16 +SUGGESTED="lua5.1"
    1.17 +BUILD_DEPENDS="wget lua5.1-dev"
    1.18 +
    1.19 +# Rules to configure and make the package.
    1.20 +compile_rules()
    1.21 +{
    1.22 +	make
    1.23 +}
    1.24 +
    1.25 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.26 +genpkg_rules()
    1.27 +{
    1.28 +	mkdir -p $fs/usr/lib/lua/5.1/
    1.29 +	cp -a src/lfs.so $fs/usr/lib/lua/5.1/
    1.30 +}