summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTrevor Woerner <twoerner@gmail.com>2018-05-09 15:17:10 -0400
committerArmin Kuster <akuster808@gmail.com>2018-05-17 08:23:23 -0700
commit12cbd4d8d6463b19b778ce6ace2051330db309f8 (patch)
treedbd45ab6dd2b4d5333b80e99d85b8f249a33faa9
parenta7502875a551268ac0efd6a0a33356f27e16a6cc (diff)
downloadmeta-openembedded-12cbd4d8d6463b19b778ce6ace2051330db309f8.tar.gz
gst-instruments: recipe cleanup, fix -staticdev
Fix the detected QA issue whereby a static (*.a) library (i.e. ${PN}-staticdev) ended up in the main gst-instruments package. WARNING: gst-instruments-0.2.3-r0 do_package_qa: QA Issue: non -staticdev package contains static .a library: gst-instruments path '/work/core2-64-oe-linux/gst-instruments/0.2.3-r0/packages-split/gst-instruments/usr/lib/gstreamer-1.0/libgstinstruments.a' [staticdev] Signed-off-by: Trevor Woerner <twoerner@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb5
1 files changed, 3 insertions, 2 deletions
diff --git a/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb
index 67d39512f..07d0c5561 100644
--- a/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb
+++ b/meta-multimedia/recipes-support/gst-instruments/gst-instruments_0.2.3.bb
@@ -5,15 +5,16 @@ SECTION = "multimedia"
5LICENSE = "LGPL-3.0" 5LICENSE = "LGPL-3.0"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02" 6LIC_FILES_CHKSUM = "file://LICENSE;md5=e6a600fd5e1d9cbde2d983680233ad02"
7 7
8DEPENDS = "gstreamer1.0"
9
8S = "${WORKDIR}/git" 10S = "${WORKDIR}/git"
9SRCREV = "4ce8092636ee6572148b5fa044080734cf5a6b8d" 11SRCREV = "4ce8092636ee6572148b5fa044080734cf5a6b8d"
10SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;" 12SRC_URI = "git://github.com/kirushyk/gst-instruments.git;protocol=https;"
11 13
14FILES_${PN}-staticdev += "${libdir}/gstreamer-1.0/*a"
12FILES_${PN} += "${libdir}/*" 15FILES_${PN} += "${libdir}/*"
13 16
14INSANE_SKIP_${PN} = "dev-so" 17INSANE_SKIP_${PN} = "dev-so"
15 18
16DEPENDS = "gstreamer1.0"
17
18inherit autotools pkgconfig 19inherit autotools pkgconfig
19 20