lbase64: New package

This package adds base64 encode/decode functionality for Lua

[Peter: fix file header, use TARGET_CONFIGURE_OPTS, drop quotes around paths]
Signed-off-by: Assaf Inbal <shmuelzon@gmail.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Assaf Inbal 2013-06-17 08:28:09 +03:00 committed by Peter Korsgaard
parent 25c3160092
commit a28ec29a9e
3 changed files with 39 additions and 0 deletions

View File

@ -314,6 +314,7 @@ menu "LUA libraries/modules"
source "package/cgilua/Config.in"
source "package/copas/Config.in"
source "package/coxpcall/Config.in"
source "package/lbase64/Config.in"
source "package/luabitop/Config.in"
source "package/luacjson/Config.in"
source "package/luaexpat/Config.in"

View File

@ -0,0 +1,6 @@
config BR2_PACKAGE_LBASE64
bool "lbase64"
help
A base64 library for Lua
http://luaforge.net/projects/lbase64/

View File

@ -0,0 +1,32 @@
################################################################################
#
# lbase64
#
################################################################################
LBASE64_VERSION = 20100323
LBASE64_SITE = http://www.tecgraf.puc-rio.br/~lhf/ftp/lua/5.1
LBASE64_SOURCE = lbase64.tar.gz
LBASE64_LICENSE = Public domain
LBASE64_LICENSE_FILES = README
LBASE64_DEPENDENCIES = lua
define LBASE64_BUILD_CMDS
$(MAKE) -C $(@D) $(TARGET_CONFIGURE_OPTS) \
CFLAGS="$(TARGET_CFLAGS) -fPIC" so
endef
define LBASE64_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/base64.so \
$(TARGET_DIR)/usr/lib/lua/base64.so
endef
define LBASE64_UNINSTALL_TARGET_CMDS
rm -f $(TARGET_DIR)/usr/lib/lua/base64.so
endef
define LBASE64_CLEAN_CMDS
$(MAKE) -C $(@D) clean
endef
$(eval $(generic-package))