mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-26 12:32:13 +00:00
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>
22 lines
613 B
Makefile
22 lines
613 B
Makefile
#############################################################
|
|
#
|
|
# 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))
|