diff options
author | Philip Balister <philip@balister.org> | 2014-12-23 15:46:59 -0500 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-31 16:36:38 +0100 |
commit | a0a0b98a6bc016a391c7352e63f90812414f491b (patch) | |
tree | 76184f2b3188f7ca90f16a01b8964a09b98a32b8 /meta-oe/recipes-support/log4cpp | |
parent | 5fbe2ac4e8ff67707b907c736966ee3d3357fd0d (diff) | |
download | meta-openembedded-a0a0b98a6bc016a391c7352e63f90812414f491b.tar.gz |
log4cpp: Add new recipe
Built for armv7a basad machine.
Signed-off-by: Philip Balister <philip@balister.org>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/log4cpp')
-rw-r--r-- | meta-oe/recipes-support/log4cpp/log4cpp_1.1.1.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/log4cpp/log4cpp_1.1.1.bb b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.1.bb new file mode 100644 index 000000000..dba4fa07a --- /dev/null +++ b/meta-oe/recipes-support/log4cpp/log4cpp_1.1.1.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | DESCRIPTION = "A library of C++ classes for flexible logging to files, syslog, IDSA and other destinations." | ||
2 | HOMEPAGE = "http://sourceforge.net/projects/log4cpp/" | ||
3 | PRIORITY = "optional" | ||
4 | LICENSE = "LGPLv2.1" | ||
5 | LIC_FILES_CHKSUM = "file://COPYING;md5=7fbc338309ac38fefcd64b04bb903e34" | ||
6 | |||
7 | SRC_URI[md5sum] = "1e173df8ee97205f412ff84aa93b8fbe" | ||
8 | SRC_URI[sha256sum] = "35abf332630a6809c969276b1d60b90c81a95daf24c86cfd7866ffef72f9bed0" | ||
9 | |||
10 | SRC_URI = "http://downloads.sourceforge.net/${BPN}/${BP}.tar.gz" | ||
11 | |||
12 | S="${WORKDIR}/${BPN}" | ||
13 | |||
14 | inherit autotools pkgconfig | ||
15 | |||
16 | EXTRA_OECONF = "\ | ||
17 | --enable-doxygen=no \ | ||
18 | --enable-dot=no \ | ||
19 | --enable-html-docs=no \ | ||
20 | --enable-latex-docs=no \ | ||
21 | LDFLAGS=-lpthread \ | ||
22 | " | ||