mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-09 14:07:28 +00:00
7eb7a22f9c
When using multilib the path for libraries might be something other than /usr/lib. zlog defaults LIBRARY_PATH to 'lib' so we need to set this appropriately so that cases where this isn't 'lib' it works properly. Signed-off-by: Dan Dedrick <ddedrick@lexmark.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
22 lines
606 B
BlitzBasic
22 lines
606 B
BlitzBasic
DESCRIPTION = "Zlog is a pure C logging library"
|
|
HOMEPAGE = "https://github.com/HardySimpson/zlog"
|
|
LICENSE = "LGPLv2.1"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=4fbd65380cdd255951079008b364516c"
|
|
|
|
PV = "1.2.12+git${SRCPV}"
|
|
|
|
SRCREV = "13904dab2878aa2654d0c20fb8600a3dc5f2dd68"
|
|
SRC_URI = "git://github.com/HardySimpson/zlog \
|
|
file://0001-event.c-Cast-pthread_t-to-unsigned-long-instead-of-u.patch \
|
|
"
|
|
|
|
S = "${WORKDIR}/git"
|
|
|
|
inherit pkgconfig
|
|
|
|
EXTRA_OEMAKE = "CC='${CC}' LD='${LD}' LIBRARY_PATH=${baselib}"
|
|
|
|
do_install() {
|
|
oe_runmake install PREFIX=${D}${exec_prefix} INSTALL=install
|
|
}
|