diff options
author | Lars Gierth <larsg@systemli.org> | 2014-09-01 00:09:51 +0200 |
---|---|---|
committer | Lars Gierth <larsg@systemli.org> | 2014-09-02 03:00:33 +0200 |
commit | 9c37a78aae25088af887afa0d2c506d104fb4fd7 (patch) | |
tree | 32b59835481e3265fd41fc61a15a957c0aef1233 /lang | |
parent | 3a78fe047ab26879cf471df69e29faa183b726bb (diff) |
dkjson: import from https://github.com/SeattleMeshnet/meshbox.git
Signed-off-by: Lars Gierth <larsg@systemli.org>
Diffstat (limited to 'lang')
-rw-r--r-- | lang/dkjson/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/lang/dkjson/Makefile b/lang/dkjson/Makefile new file mode 100644 index 000000000..e1f7ed744 --- /dev/null +++ b/lang/dkjson/Makefile @@ -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)) |