dkjson: import from https://github.com/SeattleMeshnet/meshbox.git
Signed-off-by: Lars Gierth <larsg@systemli.org>
This commit is contained in:
parent
3a78fe047a
commit
9c37a78aae
1 changed files with 47 additions and 0 deletions
47
lang/dkjson/Makefile
Normal file
47
lang/dkjson/Makefile
Normal file
|
@ -0,0 +1,47 @@
|
|||
#
|
||||
# Copyright (C) 20013-2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=dkjson
|
||||
PKG_VERSION:=2.5
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=http://dkolf.de/src/dkjson-lua.fsl/tarball/
|
||||
# TODO: md5sum doesn't seem be taken into account
|
||||
PKG_MD5SUM:=dbe706722dd64308172cf8e37395e762
|
||||
PKG_LICENSE:=MIT
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/dkjson
|
||||
SUBMENU:=Lua
|
||||
SECTION:=lang
|
||||
CATEGORY:=Languages
|
||||
TITLE:=DKJSON
|
||||
URL:=http://dkolf.de/src/dkjson-lua.fsl/home
|
||||
MAINTAINER:=Lars Gierth <larsg@systemli.org>
|
||||
DEPENDS:=+lua
|
||||
endef
|
||||
|
||||
define Package/dkjson/description
|
||||
Lua JSON parser/serializer with UTF-8 support
|
||||
endef
|
||||
|
||||
define Build/Configure
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
endef
|
||||
|
||||
define Package/dkjson/install
|
||||
$(INSTALL_DIR) $(1)/usr/lib/lua
|
||||
$(INSTALL_BIN) $(BUILD_DIR)/dkjson/dkjson.lua $(1)/usr/lib/lua/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,dkjson))
|
Loading…
Reference in a new issue