xref: /OK3568_Linux_fs/yocto/meta-openembedded/meta-oe/recipes-support/libharu/libharu_2.3.0.bb (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1SUMMARY = "free PDF library"
2HOMEPAGE = "http://libharu.org"
3DESCRIPTION = "libHaru is a library for generating PDF files. \
4               It is free, open source, written in ANSI C and cross platform. "
5
6LICENSE = "Zlib"
7LIC_FILES_CHKSUM = "file://README;md5=3ee6bc1f64d9cc7907f44840c8e50cb1"
8
9SRC_URI = "git://github.com/libharu/libharu.git;branch=2_3;protocol=https \
10           file://libharu-RELEASE_2_3_0_cmake.patch \
11           file://0001-Install-static-lib-into-var-libdir-rather-than-hardc.patch \
12	   "
13
14SRCREV = "4ae1d5f4c84459f130bf1b1ef4c5c330af8eca5d"
15
16S = "${WORKDIR}/git"
17
18inherit cmake
19DEPENDS += "libpng zlib"
20
21do_install:append() {
22     mkdir -p ${D}/${datadir}/libharu
23     mv ${D}/libharu ${D}/${datadir}
24}
25