1SUMMARY = "Bellagio OpenMAX Integration Layer (IL)" 2DESCRIPTION = "Bellagio is an opensource implementation of the Khronos OpenMAX \ 3 Integration Layer API to access multimedia components." 4HOMEPAGE = "http://omxil.sourceforge.net/" 5 6LICENSE = "LGPL-2.1-or-later" 7LICENSE_FLAGS = "${@bb.utils.contains('PACKAGECONFIG', 'amr', 'commercial', '', d)}" 8LIC_FILES_CHKSUM = "file://COPYING;md5=ae6f0f4dbc7ac193b50f323a6ae191cb \ 9 file://src/omxcore.h;beginline=1;endline=27;md5=806b1e5566c06486fe8e42b461e03a90" 10 11SRC_URI = "${SOURCEFORGE_MIRROR}/omxil/libomxil-bellagio-${PV}.tar.gz \ 12 file://configure-fix.patch \ 13 file://parallel-make.patch \ 14 file://makefile-docdir-fix.patch \ 15 file://dynamicloader-linking.patch \ 16 file://disable-so-versioning.patch" 17 18SRC_URI[md5sum] = "a1de827fdb75c02c84e55f740ca27cb8" 19SRC_URI[sha256sum] = "593c0729c8ef8c1467b3bfefcf355ec19a46dd92e31bfc280e17d96b0934d74c" 20 21S = "${WORKDIR}/${BPN}-bellagio-${PV}" 22 23inherit autotools 24 25EXTRA_OECONF += "--disable-doc --disable-Werror" 26 27PROVIDES += "virtual/libomxil" 28 29CFLAGS += "-fcommon" 30 31PACKAGECONFIG ??= "" 32 33PACKAGECONFIG[amr] = "--enable-amr,," 34 35# 36# The .so files under ${libdir}/bellagio are not intended to be versioned and symlinked. 37# Make sure they get packaged in the main package. 38# 39FILES:${PN} += "${libdir}/bellagio/*.so \ 40 ${libdir}/omxloaders/*${SOLIBS}" 41FILES:${PN}-staticdev += "${libdir}/bellagio/*.a \ 42 ${libdir}/omxloaders/*.a" 43FILES:${PN}-dev += "${libdir}/bellagio/*.la \ 44 ${libdir}/omxloaders/*.la \ 45 ${libdir}/omxloaders/*${SOLIBSDEV}" 46