mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-27 21:26:36 +00:00
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:
parent
fa11d8d830
commit
a8495cdfcd
2
CHANGES
2
CHANGES
@ -4,6 +4,8 @@
|
|||||||
|
|
||||||
New GTK-based configurator, usable using 'make gconfig'.
|
New GTK-based configurator, usable using 'make gconfig'.
|
||||||
|
|
||||||
|
New packages: luafilesystem
|
||||||
|
|
||||||
Updated/fixed packages: cdrkit, libidn, netperf
|
Updated/fixed packages: cdrkit, libidn, netperf
|
||||||
|
|
||||||
Issues resolved (http://bugs.uclibc.org):
|
Issues resolved (http://bugs.uclibc.org):
|
||||||
|
@ -207,6 +207,9 @@ menu "Interpreter languages and scripting"
|
|||||||
source "package/haserl/Config.in"
|
source "package/haserl/Config.in"
|
||||||
source "package/java/jamvm/Config.in"
|
source "package/java/jamvm/Config.in"
|
||||||
source "package/lua/Config.in"
|
source "package/lua/Config.in"
|
||||||
|
if BR2_PACKAGE_LUA
|
||||||
|
source "package/luafilesystem/Config.in"
|
||||||
|
endif
|
||||||
source "package/microperl/Config.in"
|
source "package/microperl/Config.in"
|
||||||
source "package/php/Config.in"
|
source "package/php/Config.in"
|
||||||
source "package/python/Config.in"
|
source "package/python/Config.in"
|
||||||
|
9
package/luafilesystem/Config.in
Normal file
9
package/luafilesystem/Config.in
Normal 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/
|
27
package/luafilesystem/luafilesystem.mk
Normal file
27
package/luafilesystem/luafilesystem.mk
Normal 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))
|
Loading…
x
Reference in New Issue
Block a user