libharu_2.3.0.bb 716 B

123456789101112131415161718192021222324
  1. SUMMARY = "free PDF library"
  2. HOMEPAGE = "http://libharu.org"
  3. DESCRIPTION = "libHaru is a library for generating PDF files. \
  4. It is free, open source, written in ANSI C and cross platform. "
  5. LICENSE = "Zlib"
  6. LIC_FILES_CHKSUM = "file://README;md5=3ee6bc1f64d9cc7907f44840c8e50cb1"
  7. SRC_URI = "git://github.com/libharu/libharu.git;branch=2_3 \
  8. file://libharu-RELEASE_2_3_0_cmake.patch \
  9. file://0001-Install-static-lib-into-var-libdir-rather-than-hardc.patch \
  10. "
  11. SRCREV = "4ae1d5f4c84459f130bf1b1ef4c5c330af8eca5d"
  12. S = "${WORKDIR}/git"
  13. inherit cmake
  14. DEPENDS += "libpng zlib"
  15. do_install_append() {
  16. mkdir -p ${D}/${datadir}/libharu
  17. mv ${D}/libharu ${D}/${datadir}
  18. }