From patchwork Wed Jun 13 02:40:32 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Danomi Manchego X-Patchwork-Id: 164514 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 1774FB6F62 for ; Wed, 13 Jun 2012 12:40:49 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 023D38B726; Wed, 13 Jun 2012 02:40:43 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id sqZ0D1AhCD0e; Wed, 13 Jun 2012 02:40:40 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id A9A808B615; Wed, 13 Jun 2012 02:40:39 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 0D8EC8F753 for ; Wed, 13 Jun 2012 02:40:38 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 0B43DA0142 for ; Wed, 13 Jun 2012 02:40:38 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id seOaOnoaxqlh for ; Wed, 13 Jun 2012 02:40:37 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from qmta03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by hemlock.osuosl.org (Postfix) with ESMTP id 54CA4A011E for ; Wed, 13 Jun 2012 02:40:37 +0000 (UTC) Received: from omta08.westchester.pa.mail.comcast.net ([76.96.62.12]) by qmta03.westchester.pa.mail.comcast.net with comcast id Mef91j00E0Fqzac53egcJs; Wed, 13 Jun 2012 02:40:36 +0000 Received: from localhost.localdomain ([68.37.48.40]) by omta08.westchester.pa.mail.comcast.net with comcast id Megc1j01A0s1VyU3UegcGY; Wed, 13 Jun 2012 02:40:36 +0000 From: Danomi Manchego To: buildroot@uclibc.org Date: Tue, 12 Jun 2012 22:40:32 -0400 Message-Id: <1339555233-14048-1-git-send-email-danomimanchego123@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] New package: cJSON (v3) 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 | 43 +++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 51 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..f0e1fc4 --- /dev/null +++ b/package/cjson/cjson.mk @@ -0,0 +1,43 @@ +############################################################# +# +# 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) $(TARGET_CFLAGS) -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/cJSON.h $(STAGING_DIR)/usr/include/cJSON.h + $(INSTALL) -D $(@D)/cJSON/libcJSON.so $(TARGET_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_UNINSTALL_STAGING_CMDS + rm -f $(STAGING_DIR)/usr/include/cJSON.h + rm -f $(STAGING_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_UNINSTALL_TARGET_CMDS + rm -f $(TARGET_DIR)/usr/include/cJSON.h + rm -f $(TARGET_DIR)/usr/lib/libcJSON.so +endef + +define CJSON_CLEAN_CMDS + cd $(@D)/cJSON && rm -f libcJSON.so +endef + +$(eval $(call GENTARGETS))