libomxil_0.9.3.bb 1.5 KB

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