blob: 7986650e78d9c84497f14f71e748b9a04ab3451f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
DESCRIPTION = "Lossless data compression library"
HOMEPAGE = "http://www.oberhumer.com/opensource/lzo/"
LICENSE = "GPLv2"
SECTION = "libs"
PRIORITY = "optional"
PR = "r13"
SRC_URI = "http://www.oberhumer.com/opensource/lzo/download/lzo-${PV}.tar.gz"
inherit autotools
EXTRA_OECONF = "--enable-shared"
#do_configure () {
# # override this function to avoid the autoconf/automake/aclocal/autoheader
# # calls for now
# gnu-configize
# oe_runconf
#}
do_stage() {
autotools_stage_all
}
|