New lua module: luafilesystem

Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias 2010-05-10 14:42:13 -03:00 committed by Peter Korsgaard
parent fa11d8d830
commit a8495cdfcd
4 changed files with 41 additions and 0 deletions

View File

@ -4,6 +4,8 @@
New GTK-based configurator, usable using 'make gconfig'.
New packages: luafilesystem
Updated/fixed packages: cdrkit, libidn, netperf
Issues resolved (http://bugs.uclibc.org):

View File

@ -207,6 +207,9 @@ menu "Interpreter languages and scripting"
source "package/haserl/Config.in"
source "package/java/jamvm/Config.in"
source "package/lua/Config.in"
if BR2_PACKAGE_LUA
source "package/luafilesystem/Config.in"
endif
source "package/microperl/Config.in"
source "package/php/Config.in"
source "package/python/Config.in"

View File

@ -0,0 +1,9 @@
config BR2_PACKAGE_LUAFILESYSTEM
bool "luafilesystem"
depends on BR2_LARGEFILE
depends on BR2_PACKAGE_LUA_SHARED_LIBRARY
help
LuaFileSystem offers a portable way to access
the underlying directory structure and file attributes.
http://luaforge.net/projects/luafilesystem/

View File

@ -0,0 +1,27 @@
#############################################################
#
# luafilesystem
#
#############################################################
LUAFILESYSTEM_VERSION = 1.5.0
LUAFILESYSTEM_SITE = http://github.com/downloads/keplerproject/luafilesystem
LUAFILESYSTEM_DEPENDENCIES = lua
define LUAFILESYSTEM_BUILD_CMDS
$(MAKE) -C $(@D) CC="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS) -fPIC"
endef
define LUAFILESYSTEM_INSTALL_TARGET_CMDS
$(INSTALL) -D $(@D)/src/lfs.so $(TARGET_DIR)/usr/lib/lua/lfs.so
endef
define LUAFILESYSTEM_UNINSTALL_TARGET_CMDS
rm -f "$(TARGET_DIR)/usr/lib/lua/lfs.so"
endef
define LUAFILESYSTEM_CLEAN_CMDS
$(MAKE) -C $(@D) clean
endef
$(eval $(call GENTARGETS,package,luafilesystem))