diff options
author | Ankit Navik <ankit.tarot@gmail.com> | 2019-05-02 21:13:17 +0530 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2019-05-03 10:04:45 -0700 |
commit | 52ab4b5323fb6b483f327fdf5d118e23d8ca3574 (patch) | |
tree | 6c8b4028e72e6b755a377f4e3ba59a5113d2da11 /meta-oe/recipes-core | |
parent | 0a1c33dde337084a8d691163454bf2e344550aca (diff) | |
download | meta-openembedded-52ab4b5323fb6b483f327fdf5d118e23d8ca3574.tar.gz |
libnfc: Initial recipe for Near Field Communication library.
Add generic recipe for Near Field Communication (NFC) library.
It also includes testing scheme which is not extensive but elements are already
in place.
Signed-off-by: Ankit Navik <ankit.tarot@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-core')
-rw-r--r-- | meta-oe/recipes-core/libnfc/libnfc_git.bb | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/meta-oe/recipes-core/libnfc/libnfc_git.bb b/meta-oe/recipes-core/libnfc/libnfc_git.bb new file mode 100644 index 000000000..d00733bf5 --- /dev/null +++ b/meta-oe/recipes-core/libnfc/libnfc_git.bb | |||
@@ -0,0 +1,14 @@ | |||
1 | SUMMARY = "Platform independent Near Field Communication (NFC) library" | ||
2 | DESCRIPTION = "libnfc is a library which allows userspace application access \ | ||
3 | to NFC devices." | ||
4 | LICENSE = "LGPLv3" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=b52f2d57d10c4f7ee67a7eb9615d5d24" | ||
6 | SECTION = "libs" | ||
7 | |||
8 | inherit autotools pkgconfig | ||
9 | |||
10 | S = "${WORKDIR}/git" | ||
11 | SRCREV = "c42e2502d4627d3ea62f83c32677b100bb3cebdc" | ||
12 | SRC_URI = "git://github.com/nfc-tools/libnfc.git" | ||
13 | |||
14 | DEPENDS = "libusb" | ||