From patchwork Fri Jun 8 13:37:25 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Dawson X-Patchwork-Id: 163778 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 E6B65B6FBB for ; Fri, 8 Jun 2012 23:37:40 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id A789FA0394; Fri, 8 Jun 2012 13:37: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 xQFP6BWWfghm; Fri, 8 Jun 2012 13:37:37 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id 4D65CA0387; Fri, 8 Jun 2012 13:37:37 +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 644168F753 for ; Fri, 8 Jun 2012 13:37:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 4F58D8F9D5 for ; Fri, 8 Jun 2012 13:37:36 +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 ho9pMaVtfyAG for ; Fri, 8 Jun 2012 13:37:35 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-ey0-f171.google.com (mail-ey0-f171.google.com [209.85.215.171]) by whitealder.osuosl.org (Postfix) with ESMTPS id 073328F869 for ; Fri, 8 Jun 2012 13:37:34 +0000 (UTC) Received: by eaaa12 with SMTP id a12so2154130eaa.16 for ; Fri, 08 Jun 2012 06:37:33 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:subject:date:message-id:x-mailer; bh=91DFe6MR1KDq6V+RrnTz2DE8qyxa0zc1VDQlDcxv/c0=; b=IGQihhMdGCsM11t4lHdQUO3Hl1+LwZ2MW9Z7xT0O6XqWpPHphlczCX+Z8BzaXjHcMx iV3DFOI44sGzXPMMwts0r8NO8DpkFC927HnIcJzubh1xm4mzb0CqFcLt877YofDGNDCC bHIeXMqDA3PeErtmkTfVq4s+PYpl1ip6lWLEHaqXWO+Ibi1yEZJ8jpG1hh5/MDaSCkuj fq0erqnr9CPjUFgSHIQ/NFF26j/nPVOADs6NvCNgEBkjpGWC7XezTsqIf2Sc4OaUisNC 0/GwNvT0W8ufb1jEU/WJEZa/Kgx2VSIuCxXHjFjpu57zkjL500AVhV4Nrblhfa3KgBz2 CLUQ== Received: by 10.14.95.65 with SMTP id o41mr3670041eef.41.1339162652731; Fri, 08 Jun 2012 06:37:32 -0700 (PDT) Received: from percy.train.local ([213.170.149.177]) by mx.google.com with ESMTPS id x52sm22391125eea.11.2012.06.08.06.37.29 (version=SSLv3 cipher=OTHER); Fri, 08 Jun 2012 06:37:31 -0700 (PDT) From: spdawson@gmail.com To: buildroot@busybox.net Date: Fri, 8 Jun 2012 14:37:25 +0100 Message-Id: <1339162645-25335-1-git-send-email-spdawson@gmail.com> X-Mailer: git-send-email 1.7.9.5 Subject: [Buildroot] [PATCH] libfreefare: 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 From: Simon Dawson Signed-off-by: Simon Dawson --- package/Config.in | 1 + package/libfreefare/Config.in | 7 +++++++ package/libfreefare/libfreefare.mk | 10 ++++++++++ 3 files changed, 18 insertions(+) create mode 100644 package/libfreefare/Config.in create mode 100644 package/libfreefare/libfreefare.mk diff --git a/package/Config.in b/package/Config.in index 2b69c57..039bfce 100644 --- a/package/Config.in +++ b/package/Config.in @@ -362,6 +362,7 @@ menu "Hardware handling" source "package/libaio/Config.in" source "package/libraw1394/Config.in" source "package/tslib/Config.in" +source "package/libfreefare/Config.in" source "package/libftdi/Config.in" source "package/libhid/Config.in" source "package/libiqrf/Config.in" diff --git a/package/libfreefare/Config.in b/package/libfreefare/Config.in new file mode 100644 index 0000000..2e11f7e --- /dev/null +++ b/package/libfreefare/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LIBFREEFARE + bool "libfreefare" + select BR2_PACKAGE_LIBNFC + help + Library for high level manipulation of MIFARE cards. + + http://code.google.com/p/nfc-tools/wiki/libfreefare diff --git a/package/libfreefare/libfreefare.mk b/package/libfreefare/libfreefare.mk new file mode 100644 index 0000000..0499999 --- /dev/null +++ b/package/libfreefare/libfreefare.mk @@ -0,0 +1,10 @@ +############################################################# +# +# libfreefare +# +############################################################# +LIBFREEFARE_VERSION = 0.3.2 +LIBFREEFARE_SITE = http://nfc-tools.googlecode.com/files +LIBFREEFARE_DEPENDENCIES = libnfc + +$(eval $(call AUTOTARGETS))