package: add yajl

yajl is Yet Another JSON Library.

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard 2011-06-21 17:12:45 +02:00
parent 353ebfd0b1
commit a9f637383d
3 changed files with 21 additions and 1 deletions

View File

@ -354,13 +354,14 @@ source "package/readline/Config.in"
source "package/slang/Config.in"
endmenu
menu "XML"
menu "JSON/XML"
source "package/expat/Config.in"
source "package/ezxml/Config.in"
source "package/libxml-parser-perl/Config.in"
source "package/libxml2/Config.in"
source "package/libxslt/Config.in"
source "package/xerces/Config.in"
source "package/yajl/Config.in"
endmenu
endmenu

8
package/yajl/Config.in Normal file
View File

@ -0,0 +1,8 @@
config BR2_PACKAGE_YAJL
bool "yajl"
help
Yet Another JSON Library. YAJL is a small event-driven
(SAX-style) JSON parser written in ANSI C, and a small
validating JSON generator.
http://lloyd.github.com/yajl/

11
package/yajl/yajl.mk Normal file
View File

@ -0,0 +1,11 @@
################################################################################
#
# yajl
#
################################################################################
YAJL_VERSION = 2.0.2
YAJL_SITE = git://github.com/lloyd/yajl.git
YAJL_INSTALL_STAGING = YES
$(eval $(call CMAKETARGETS,package,yajl))