mirror of
git://git.yoctoproject.org/poky
synced 2026-09-27 15:13:41 +00:00
Move the functionality into autotools and ensure all our Poky recipes are no longer using it. Keep the autools_stage class around for OE compatability but just have it inherit autools. Signed-off-by: Joshua Lock <josh@linux.intel.com>
21 lines
467 B
BlitzBasic
21 lines
467 B
BlitzBasic
DESCRIPTION = "Lossless data compression library"
|
|
HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/"
|
|
LICENSE = "GPLv2"
|
|
SECTION = "libs"
|
|
PRIORITY = "optional"
|
|
PR = "r1"
|
|
|
|
SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz \
|
|
file://autofoo.patch;patch=1 \
|
|
file://acinclude.m4"
|
|
|
|
inherit autotools
|
|
|
|
EXTRA_OECONF = "--enable-shared"
|
|
|
|
do_configure_prepend () {
|
|
cp ${WORKDIR}/acinclude.m4 ${S}/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native"
|