From d70c1ad69e2a02dd75d8693d2ec057e13c24a16e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=BCller?= Date: Wed, 21 Sep 2016 21:35:36 +0200 Subject: [PATCH] chromaprint: fix multiple warnings MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit WARNING: chromaprint-1.3.2-r0 do_populate_lic: Could not copy license file /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/chromaprint/1.3.2-r0/chromaprint-1.3.2/LICENSE.txt to /home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/chromaprint/1.3.2-r0/license-destdir/chromaprint/LICENSE.txt: [Errno 2] No such file or directory: '/home/superandy/tmp/oe-core-glibc/work/cortexa7t2hf-neon-vfpv4-angstrom-linux-gnueabi/chromaprint/1.3.2-r0/chromaprint-1.3.2/LICENSE.txt' ... WARNING: chromaprint-1.3.2-r0 do_package_qa: QA Issue: chromaprint rdepends on libavutil, but it isn't a build dependency, missing ffmpeg in DEPENDS or PACKAGECONFIG? [build-deps] WARNING: chromaprint-1.3.2-r0 do_package_qa: QA Issue: chromaprint rdepends on libavcodec, but it isn't a build dependency, missing ffmpeg in DEPENDS or PACKAGECONFIG? [build-deps] Signed-off-by: Andreas Müller --- .../recipes-multimedia/chromaprint/chromaprint_1.3.2.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/recipes-misc/recipes-multimedia/chromaprint/chromaprint_1.3.2.bb b/recipes-misc/recipes-multimedia/chromaprint/chromaprint_1.3.2.bb index 2d3226cb..23566664 100644 --- a/recipes-misc/recipes-multimedia/chromaprint/chromaprint_1.3.2.bb +++ b/recipes-misc/recipes-multimedia/chromaprint/chromaprint_1.3.2.bb @@ -1,12 +1,13 @@ SUMMARY = "Chromaprint is library that extracts fingerprints from audio sources" HOMEPAGE = "https://acoustid.org/chromaprint" LICENSE = "LGPLv2.1" -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2d5025d4aa3495befef8f17206a5b0a1" +LIC_FILES_CHKSUM = "file://COPYING.txt;md5=4fbd65380cdd255951079008b364516c" inherit cmake DEPENDS += " \ - virtual/fftw \ + fftw \ + ffmpeg \ " SRC_URI = "https://bitbucket.org/acoustid/${BPN}/downloads/${BPN}-${PV}.tar.gz"