summaryrefslogtreecommitdiff
path: root/package/libnfc
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbrodkorb@conet.de>2015-12-07 15:23:28 +0100
committerWaldemar Brodkorb <wbrodkorb@conet.de>2015-12-07 15:23:28 +0100
commit4310a156eb99f648466143f034818180c92af7bf (patch)
tree6785a670cc65291194e48a78dd4cadd20832c318 /package/libnfc
parent2a0ec4d53e2ff0265ae5469e5cceac5446c016ab (diff)
libnfc: new package
Diffstat (limited to 'package/libnfc')
-rw-r--r--package/libnfc/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/package/libnfc/Makefile b/package/libnfc/Makefile
new file mode 100644
index 000000000..25cadbf4f
--- /dev/null
+++ b/package/libnfc/Makefile
@@ -0,0 +1,33 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= libnfc
+PKG_VERSION:= 1.7.1
+PKG_RELEASE:= 1
+PKG_HASH:= 945e74d8e27683f9b8a6f6e529557b305d120df347a960a6a7ead6cb388f4072
+PKG_DESCR:= nfc library and tools
+PKG_SECTION:= libs/net
+PKG_DEPENDS:= libusb libusb-compat
+PKG_BUILDDEP:= libusb libusb-compat
+PKG_NEEDS:= threads
+PKG_URL:= http://nfc-tools.org
+PKG_SITES:= https://bintray.com/artifact/download/nfc-tools/sources/
+PKG_OPTS:= dev
+
+DISTFILES:= $(PKG_NAME)-$(PKG_VERSION).tar.bz2
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,LIBNFC,libnfc,$(PKG_VERSION)-$(PKG_RELEASE),$(PKG_DEPENDS),$(PKG_DESCR),$(PKG_SECTION),$(PKG_OPTS)))
+
+libnfc-install:
+ $(INSTALL_DIR) $(IDIR_LIBNFC)/usr/lib
+ $(INSTALL_DIR) $(IDIR_LIBNFC)/usr/bin
+ $(CP) $(WRKINST)/usr/lib/libnfc*.so* \
+ $(IDIR_LIBNFC)/usr/lib
+ $(INSTALL_BIN) $(WRKINST)/usr/bin/* \
+ $(IDIR_LIBNFC)/usr/bin
+
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk