summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libharu/libharu_2.3.0.bb
diff options
context:
space:
mode:
authorZheng Ruoqin <zhengrq.fnst@cn.fujitsu.com>2020-02-26 23:10:00 +0800
committerKhem Raj <raj.khem@gmail.com>2020-02-27 08:25:49 -0800
commitfba148fefd34bd8b122cc931586f26106d6208a7 (patch)
tree56954f9acf16253ffcf6296a34670837e51dd8b2 /meta-oe/recipes-support/libharu/libharu_2.3.0.bb
parent997067e15eae80fa58b0c97a353606193f75f91c (diff)
downloadmeta-openembedded-fba148fefd34bd8b122cc931586f26106d6208a7.tar.gz
libharu: New recipe
libHaru is a library for generating PDF files. Signed-off-by: Zheng Ruoqin <zhengrq.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libharu/libharu_2.3.0.bb')
-rw-r--r--meta-oe/recipes-support/libharu/libharu_2.3.0.bb23
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libharu/libharu_2.3.0.bb b/meta-oe/recipes-support/libharu/libharu_2.3.0.bb
new file mode 100644
index 0000000000..2d1a37c421
--- /dev/null
+++ b/meta-oe/recipes-support/libharu/libharu_2.3.0.bb
@@ -0,0 +1,23 @@
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 \
10 file://libharu-RELEASE_2_3_0_cmake.patch \
11 "
12
13SRCREV = "4ae1d5f4c84459f130bf1b1ef4c5c330af8eca5d"
14
15S = "${WORKDIR}/git"
16
17inherit cmake
18DEPENDS += "libpng zlib"
19
20do_install_append() {
21 mkdir -p ${D}/${datadir}/libharu
22 mv ${D}/libharu ${D}/${datadir}
23}