mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-30 14:46:31 +00:00
luaexpatutils: New package
lxp.doc is a module that provides useful features for working with XML formats in LOM format as used by the LuaExpat project from Kepler. [Peter: use fixed git revision, github tarball, install -D] Signed-off-by: Assaf Inbal <shmuelzon@gmail.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
211a5df280
commit
0b20c1aa33
@ -319,6 +319,7 @@ source "package/luabitop/Config.in"
|
|||||||
source "package/luacjson/Config.in"
|
source "package/luacjson/Config.in"
|
||||||
source "package/luacrypto/Config.in"
|
source "package/luacrypto/Config.in"
|
||||||
source "package/luaexpat/Config.in"
|
source "package/luaexpat/Config.in"
|
||||||
|
source "package/luaexpatutils/Config.in"
|
||||||
source "package/luafilesystem/Config.in"
|
source "package/luafilesystem/Config.in"
|
||||||
source "package/luasocket/Config.in"
|
source "package/luasocket/Config.in"
|
||||||
source "package/lua-ev/Config.in"
|
source "package/lua-ev/Config.in"
|
||||||
|
8
package/luaexpatutils/Config.in
Normal file
8
package/luaexpatutils/Config.in
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
config BR2_PACKAGE_LUAEXPATUTILS
|
||||||
|
bool "luaexpatutils"
|
||||||
|
select BR2_PACKAGE_LUAEXPAT
|
||||||
|
help
|
||||||
|
lxp.doc is a module that provides useful features for working with
|
||||||
|
XML formats in LOM format as used by the LuaExpat project from Kepler.
|
||||||
|
|
||||||
|
https://github.com/stevedonovan/LuaExpatUtils
|
21
package/luaexpatutils/luaexpatutils.mk
Normal file
21
package/luaexpatutils/luaexpatutils.mk
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#############################################################
|
||||||
|
#
|
||||||
|
# luaexpatutils
|
||||||
|
#
|
||||||
|
#############################################################
|
||||||
|
|
||||||
|
LUAEXPATUTILS_VERSION = 88c228365b
|
||||||
|
LUAEXPATUTILS_SITE = http://github.com/stevedonovan/LuaExpatUtils/tarball/$(LUAEXPATUTILS_VERSION)
|
||||||
|
LUAEXPATUTILS_LICENSE = Public Domain
|
||||||
|
LUAEXPATUTILS_DEPENDENCIES = luaexpat
|
||||||
|
|
||||||
|
define LUAEXPATUTILS_INSTALL_TARGET_CMDS
|
||||||
|
$(INSTALL) -m 0644 -D $(@D)/lua/doc.lua \
|
||||||
|
$(TARGET_DIR)/usr/share/lua/lxp/doc.lua
|
||||||
|
endef
|
||||||
|
|
||||||
|
define LUAEXPATUTILS_UNINSTALL_TARGET_CMDS
|
||||||
|
rm -f $(TARGET_DIR)/usr/share/lua/lxp/doc.lua
|
||||||
|
endef
|
||||||
|
|
||||||
|
$(eval $(generic-package))
|
Loading…
x
Reference in New Issue
Block a user