mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-16 16:27:27 +00:00
1c6b8287b4
Signed-off-by: Marcin Juszkiewicz <marcin.juszkiewicz@linaro.org>
37 lines
978 B
BlitzBasic
37 lines
978 B
BlitzBasic
DESCRIPTION = "Lzip is a lossless data compressor based on the LZMA algorithm"
|
|
HOMEPAGE = "http://lzip.nongnu.org/lzip.html"
|
|
SECTION = "console/utils"
|
|
LICENSE = "GPLv3"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949"
|
|
|
|
SRC_URI = "http://download.savannah.gnu.org/releases/lzip/lzip-${PV}.tar.gz"
|
|
|
|
SRC_URI[md5sum] = "2f401e995c36cca05bd1805aa9c28231"
|
|
SRC_URI[sha256sum] = "c73d36c0a926b71d484eacc192262a1d209674e3f903016f2c74a2bcbc5c28ac"
|
|
|
|
CONFIGUREOPTS = "\
|
|
'--srcdir=${S}' \
|
|
'--prefix=${prefix}' \
|
|
'--exec-prefix=${exec_prefix}' \
|
|
'--bindir=${bindir}' \
|
|
'--datadir=${datadir}' \
|
|
'--infodir=${infodir}' \
|
|
'--sysconfdir=${sysconfdir}' \
|
|
'CXX=${CXX}' \
|
|
'CPPFLAGS=${CPPFLAGS}' \
|
|
'CXXFLAGS=${CXXFLAGS}' \
|
|
'LDFLAGS=${LDFLAGS}' \
|
|
"
|
|
EXTRA_OEMAKE = ""
|
|
|
|
B = "${S}/obj"
|
|
do_configure () {
|
|
${S}/configure ${CONFIGUREOPTS}
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake 'DESTDIR=${D}' install
|
|
}
|
|
|
|
BBCLASSEXTEND += "native nativesdk"
|