From patchwork Thu Feb 21 14:58:39 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Maxime Hadjinlian X-Patchwork-Id: 222314 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id 3384B2C0090 for ; Fri, 22 Feb 2013 02:00:12 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 9B01CA0257; Thu, 21 Feb 2013 15:00:11 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id tF6jSItb5RWS; Thu, 21 Feb 2013 14:59:59 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 8F7D9A00F8; Thu, 21 Feb 2013 14:59:56 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 201AC8F75B for ; Thu, 21 Feb 2013 14:59:41 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 9579D8B246 for ; Thu, 21 Feb 2013 14:59:33 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org X-Amavis-Alert: BAD HEADER SECTION, Duplicate header field: "References" Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id Qa66gomjKGms for ; Thu, 21 Feb 2013 14:59:32 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ea0-f181.google.com (mail-ea0-f181.google.com [209.85.215.181]) by whitealder.osuosl.org (Postfix) with ESMTPS id DD4EA8AAEF for ; Thu, 21 Feb 2013 14:59:31 +0000 (UTC) Received: by mail-ea0-f181.google.com with SMTP id i13so3822182eaa.26 for ; Thu, 21 Feb 2013 06:59:30 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:from:to:cc:subject:date:message-id:x-mailer:in-reply-to :references:in-reply-to:references; bh=iP4W+JiM49dwLg8Cbauba737Mn3wLGfdD+yAPYwzU1M=; b=xm48dtPN7cXAc+kYwedofjC8rDgnJoJvXxn3JCZajzS+vZeN15nJFfu3BKNYqzQPRJ G+/2h6hU2yaf8KQ/5llnyvPQKTc3IOxWNj5KdMFFvsHU8QLFcCMHEK6o3iRPZtHE2GC6 YARbpduvcje9ZoSF/1UsAz6KpvLP5tTWEPmoZQ8SKm80lpHkwq2UE3u5789zsV3N/aQC +VRY0OjdRn8r0Ee+y8C9Mb7cGaKTWbrQqiDI7kpMryrH9s8UwwQ0yzdzHrFuyla7lcFa ZwdIWacNYeJC7QqS9oEThPcZFy0oyz6SzkvCvNodxY/ZE4bCMetO1fGbI7kwnHRA+fm+ i+6w== X-Received: by 10.14.0.135 with SMTP id 7mr81269920eeb.5.1361458770160; Thu, 21 Feb 2013 06:59:30 -0800 (PST) Received: from localhost (193.5-14-84.ripe.coltfrance.com. [84.14.5.193]) by mx.google.com with ESMTPS id s3sm44953445eem.4.2013.02.21.06.59.28 (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Thu, 21 Feb 2013 06:59:29 -0800 (PST) From: Maxime Hadjinlian To: buildroot@busybox.net Date: Thu, 21 Feb 2013 15:58:39 +0100 Message-Id: <28cc50d3bae240e6956876b657cafabc7f2187b0.1361458625.git.maxime.hadjinlian@gmail.com> X-Mailer: git-send-email 1.7.10.4 In-Reply-To: References: In-Reply-To: References: Subject: [Buildroot] [PATCH 09/13] libplist: new package 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 LIBPLIST is a client for manipulating Apple Property List (.plist) files This package was originally found at : https://github.com/huceke/buildroot-rbp By gimli Signed-off-by: Maxime Hadjinlian --- package/Config.in | 1 + package/libplist/Config.in | 12 ++++++++++++ package/libplist/libplist.mk | 15 +++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 package/libplist/Config.in create mode 100644 package/libplist/libplist.mk diff --git a/package/Config.in b/package/Config.in index a9cb9ed..382d859 100644 --- a/package/Config.in +++ b/package/Config.in @@ -559,6 +559,7 @@ source "package/gsl/Config.in" source "package/libglib2/Config.in" source "package/libical/Config.in" source "package/lockdev/Config.in" +source "package/libplist/Config.in" source "package/libnspr/Config.in" source "package/libsigc/Config.in" source "package/libtpl/Config.in" diff --git a/package/libplist/Config.in b/package/libplist/Config.in new file mode 100644 index 0000000..a4a3adb --- /dev/null +++ b/package/libplist/Config.in @@ -0,0 +1,12 @@ +config BR2_PACKAGE_LIBPLIST + bool "libplist" + select BR2_PACKAGE_LIBXML2 + depends on BR2_INSTALL_LIBSTDCPP + help + libplist is a client for manipulating Apple Property List + (.plist) files + + http://cgit.sukimashita.com/libplist.git + +comment "libplist requires C++ support in toolchain" + depends on !BR2_INSTALL_LIBSTDCPP diff --git a/package/libplist/libplist.mk b/package/libplist/libplist.mk new file mode 100644 index 0000000..16ea5ff --- /dev/null +++ b/package/libplist/libplist.mk @@ -0,0 +1,15 @@ +############################################################# +# +# libplist +# +############################################################# + +LIBPLIST_VERSION = 1.6 +LIBPLIST_SITE = http://cgit.sukimashita.com/libplist.git/snapshot +LIBPLIST_DEPENDENCIES = libxml2 +LIBPLIST_INSTALL_STAGING = YES +LIBPLIST_MAKE = $(MAKE1) +LIBPLIST_LICENSE = GPLv2 +LIBPLIST_LICENSE_FILES = COPYING + +$(eval $(cmake-package))