From patchwork Tue Jun 5 00:38:23 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 162886 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 4F8DCB6F9A for ; Tue, 5 Jun 2012 10:38:36 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D88811004E7; Tue, 5 Jun 2012 00:38:34 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id g+vzcNUdJ7vE; Tue, 5 Jun 2012 00:38:33 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id CC931100F56; Tue, 5 Jun 2012 00:38:32 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id 1F8688F75B for ; Tue, 5 Jun 2012 00:38:31 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 1457A100F56 for ; Tue, 5 Jun 2012 00:38:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id nBEFS9+V98EF for ; Tue, 5 Jun 2012 00:38:30 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from QMTA11.westchester.pa.mail.comcast.net (qmta11.westchester.pa.mail.comcast.net [76.96.59.211]) by fraxinus.osuosl.org (Postfix) with ESMTP id 578D41004E7 for ; Tue, 5 Jun 2012 00:38:30 +0000 (UTC) Received: from omta18.westchester.pa.mail.comcast.net ([76.96.62.90]) by QMTA11.westchester.pa.mail.comcast.net with comcast id JPGn1j0021wpRvQ5BQeVlT; Tue, 05 Jun 2012 00:38:29 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta18.westchester.pa.mail.comcast.net with comcast id JQeV1j01B0s1VyU3eQeVhr; Tue, 05 Jun 2012 00:38:29 +0000 From: Danomi Manchego To: buildroot@uclibc.org Date: Mon, 4 Jun 2012 20:38:23 -0400 Message-Id: <1338856703-4082-1-git-send-email-danomimanchego123@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] New package: cJSON (v2) X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net Signed-off-by: Danomi Manchego --- package/Config.in | 1 + package/cjson/Config.in | 7 +++++++ package/cjson/cjson.mk | 41 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 49 insertions(+) create mode 100644 package/cjson/Config.in create mode 100644 package/cjson/cjson.mk diff --git a/package/Config.in b/package/Config.in index ca8fc96..153b3df 100644 --- a/package/Config.in +++ b/package/Config.in @@ -462,6 +462,7 @@ source "package/slang/Config.in" endmenu menu "JSON/XML" +source "package/cjson/Config.in" source "package/expat/Config.in" source "package/ezxml/Config.in" source "package/json-c/Config.in" diff --git a/package/cjson/Config.in b/package/cjson/Config.in new file mode 100644 index 0000000..ff90074 --- /dev/null +++ b/package/cjson/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_CJSON + bool "cJSON" + help + An ultra-lightweight, portable, single-file, simple-as-can-be ANSI-C + compliant JSON parser, under MIT license. + + http://cjson.sourceforge.net/ diff --git a/package/cjson/cjson.mk b/package/cjson/cjson.mk new file mode 100644 index 0000000..cc1853d --- /dev/null +++ b/package/cjson/cjson.mk @@ -0,0 +1,41 @@ +############################################################# +# +# cjson +# +############################################################# +CJSON_VERSION = undefined +CJSON_SOURCE = cJSONFiles.zip +CJSON_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/project/cjson/ +CJSON_INSTALL_STAGING = YES + +define CJSON_EXTRACT_CMDS + unzip -d $(@D) $(DL_DIR)/$(CJSON_SOURCE) +endef + +define CJSON_BUILD_CMDS + cd $(@D)/cJSON && $(TARGET_CC) -Wall -O2 -shared -fpic cJSON.c -o libcJSON.so +endef + +define CJSON_INSTALL_STAGING_CMDS + $(INSTALL) -D $(@D)/cJSON/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h + $(INSTALL) -D $(@D)/cJSON/libcJSON.so $(STAGING_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_INSTALL_TARGET_CMDS + $(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_UNINSTALL_STAGING_CMDS + rm -f $(STAGING_DIR)/usr/lib/libcJSON.so + rm -f $(STAGING_DIR)/usr/include/cJSON.h +endef + +define CJSON_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_CLEAN_CMDS + cd $(@D)/cJSON && rm -f libcJSON.so +endef + +$(eval $(call GENTARGETS))