Commit a8495cdf authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

New lua module: luafilesystem

parent fa11d8d8
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -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):
+3 −0
Original line number Diff line number Diff line
@@ -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"
+9 −0
Original line number Diff line number Diff line
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/
+27 −0
Original line number Diff line number Diff line
#############################################################
#
# 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))