- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
21 lines
804 B
BlitzBasic
21 lines
804 B
BlitzBasic
SUMMARY = "MMS stream protocol library"
|
|
HOMEPAGE = "http://sourceforge.net/projects/libmms/"
|
|
SECTION = "libs/multimedia"
|
|
|
|
LICENSE = "LGPL-2.0-or-later"
|
|
LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=fad9b3332be894bab9bc501572864b29"
|
|
|
|
SRC_URI = "${SOURCEFORGE_MIRROR}/project/${BPN}/${BPN}/${PV}/${BP}.tar.gz"
|
|
SRC_URI[md5sum] = "d6b665b335a6360e000976e770da7691"
|
|
SRC_URI[sha256sum] = "3c05e05aebcbfcc044d9e8c2d4646cd8359be39a3f0ba8ce4e72a9094bee704f"
|
|
|
|
inherit autotools pkgconfig
|
|
|
|
do_install:append() {
|
|
# The GLib dependency was removed in libmms 0.6.3, but the
|
|
# "Requires" was not removed from the pkg-config file. Since we
|
|
# don't have (and don't want) the RDEPENDS on GLib, we should
|
|
# remove the "Requires" line.
|
|
sed -i '/^Requires: glib-2\.0$/d' ${D}${libdir}/pkgconfig/libmms.pc
|
|
}
|