From patchwork Mon Mar 26 14:51:52 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2] New package: libdmtx Date: Mon, 26 Mar 2012 04:51:52 -0000 From: Frank Hunleth X-Patchwork-Id: 148753 Message-Id: <1332773512-32706-1-git-send-email-fhunleth@troodon-software.com> To: buildroot@busybox.net Signed-off-by: Frank Hunleth --- package/Config.in | 1 + package/libdmtx/Config.in | 7 +++++++ package/libdmtx/libdmtx.mk | 12 ++++++++++++ 3 files changed, 20 insertions(+), 0 deletions(-) create mode 100644 package/libdmtx/Config.in create mode 100644 package/libdmtx/libdmtx.mk diff --git a/package/Config.in b/package/Config.in index b394f18..6df27a1 100644 --- a/package/Config.in +++ b/package/Config.in @@ -305,6 +305,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))