diff options
author | Koen Kooi <koen@openembedded.org> | 2010-09-14 15:38:16 +0200 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-09-14 16:07:00 +0200 |
commit | 3b1b9336b4402d2718dad19661124bbf5938495d (patch) | |
tree | 4fb0ae6b81818c7ff1f18a1c5a43d15d43af783c /recipes | |
parent | 0ee1e449696318ff321ea16408ab27da065121fc (diff) |
libdecodeqr: add 0.9.4+git
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/opencv/libdecodeqr_git.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/recipes/opencv/libdecodeqr_git.bb b/recipes/opencv/libdecodeqr_git.bb new file mode 100644 index 0000000000..9712f981fa --- /dev/null +++ b/recipes/opencv/libdecodeqr_git.bb @@ -0,0 +1,22 @@ +DESCRIPTION = "A C/C++ library for decoding QR code 2D barcodes" +LICENSE = "LGPLv2.1" + +DEPENDS = "opencv" + +PE = "1" +PV = "0.9.4" +PR = "r1+gitr${SRCREV}" + +inherit autotools lib_package + +SRCREV = "7e6896d78d857fada4b8" +SRC_URI = "git://github.com/josephholsten/libdecodeqr.git;protocol=git" + +S = "${WORKDIR}/git" + +do_install_append() { + install -d ${D}${bindir} + install -m 0755 ${S}/examples/simple/.libs/simpletest ${D}${bindir}/libdecodeqr-simpletest + install -m 0755 ${S}/examples/webcam/.libs/webcam ${D}${bindir}/libdecodeqr-webcamtest +} + |