From a8495cdfcd46267e6782d174429231a49c22a23f Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 10 May 2010 14:42:13 -0300 Subject: New lua module: luafilesystem Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/luafilesystem/Config.in | 9 +++++++++ package/luafilesystem/luafilesystem.mk | 27 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100644 package/luafilesystem/Config.in create mode 100644 package/luafilesystem/luafilesystem.mk (limited to 'package/luafilesystem') diff --git a/package/luafilesystem/Config.in b/package/luafilesystem/Config.in new file mode 100644 index 000000000..ba6387831 --- /dev/null +++ b/package/luafilesystem/Config.in @@ -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/ diff --git a/package/luafilesystem/luafilesystem.mk b/package/luafilesystem/luafilesystem.mk new file mode 100644 index 000000000..a27080cd6 --- /dev/null +++ b/package/luafilesystem/luafilesystem.mk @@ -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)) -- cgit v1.2.3