From patchwork Mon Apr 16 22:21:39 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Peter Korsgaard X-Patchwork-Id: 153002 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 F17F7B6FF7 for ; Tue, 17 Apr 2012 08:34:27 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 0AA8B81BA4; Mon, 16 Apr 2012 22:34:23 +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 peWN8I7e-CFQ; Mon, 16 Apr 2012 22:34:09 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 29F8B8D8E8; Mon, 16 Apr 2012 22:33:59 +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 35BF98F790 for ; Mon, 16 Apr 2012 22:33:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 323DDA027B for ; Mon, 16 Apr 2012 22:33:57 +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 jeDijNTOuqKX for ; Mon, 16 Apr 2012 22:33:56 +0000 (UTC) Received: from busybox.osuosl.org (busybox.osuosl.org [140.211.167.224]) by hemlock.osuosl.org (Postfix) with ESMTP id 79275A0263 for ; Mon, 16 Apr 2012 22:33:56 +0000 (UTC) Received: by busybox.osuosl.org (Postfix, from userid 4021) id 7220896AEC; Mon, 16 Apr 2012 22:33:56 +0000 (UTC) From: Peter Korsgaard To: buildroot@busybox.net Date: Tue, 17 Apr 2012 00:21:39 +0200 X-Git-Refname: refs/heads/master X-Git-Oldrev: 7c717bbfffea0c55d348435e9b98e492b11b9177 X-Git-Newrev: 2f41adabc5a12fcca1de5b6c296c2206b518abff X-Patchwork-Hint: ignore Message-Id: <20120416223356.7220896AEC@busybox.osuosl.org> Subject: [Buildroot] [git commit] New package: libdmtx 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 commit: http://git.buildroot.net/buildroot/commit/?id=2f41adabc5a12fcca1de5b6c296c2206b518abff branch: http://git.buildroot.net/buildroot/commit/?id=refs/heads/master Signed-off-by: Frank Hunleth Signed-off-by: Peter Korsgaard --- package/Config.in | 1 + package/libdmtx/Config.in | 7 +++++++ package/libdmtx/libdmtx.mk | 12 ++++++++++++ 3 files changed, 20 insertions(+), 0 deletions(-) diff --git a/package/Config.in b/package/Config.in index 3e5f708..567fbed 100644 --- a/package/Config.in +++ b/package/Config.in @@ -307,6 +307,7 @@ source "package/gtk2-themes/Config.in" source "package/imlib2/Config.in" source "package/jpeg/Config.in" source "package/libart/Config.in" +source "package/libdmtx/Config.in" source "package/libdrm/Config.in" source "package/libexif/Config.in" source "package/libgail/Config.in" diff --git a/package/libdmtx/Config.in b/package/libdmtx/Config.in new file mode 100644 index 0000000..db4187f --- /dev/null +++ b/package/libdmtx/Config.in @@ -0,0 +1,7 @@ +config BR2_PACKAGE_LIBDMTX + bool "libdmtx" + help + libdmtx is a software library that enables programs to read and write + Data Matrix barcodes of the modern ECC200 variety. + + http://www.libdmtx.org/ diff --git a/package/libdmtx/libdmtx.mk b/package/libdmtx/libdmtx.mk new file mode 100644 index 0000000..495e59a --- /dev/null +++ b/package/libdmtx/libdmtx.mk @@ -0,0 +1,12 @@ +############################################################# +# +# libdmtx +# +############################################################# + +LIBDMTX_VERSION = 0.7.4 +LIBDMTX_SOURCE = libdmtx-$(LIBDMTX_VERSION).tar.gz +LIBDMTX_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/libdmtx +LIBDMTX_INSTALL_STAGING = YES + +$(eval $(call AUTOTARGETS))