mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
04dcd55c9d
* The variables (SAVANNAH_MIRROR) are defined in oe-core/meta/conf/bitbake.conf. * MIRRORS in quagga and libunwind is removed. because the MIRRORS of savannah is globally defined in oe-core/meta/classes/mirrors.bbclass Signed-off-by: Changhyeok Bae <changhyeok.bae@lge.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
44 lines
1.2 KiB
BlitzBasic
44 lines
1.2 KiB
BlitzBasic
SUMMARY = "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 = "${SAVANNAH_GNU_MIRROR}/lzip/lzip-${PV}.tar.gz"
|
|
|
|
# Only the latest version is available in .tar.gz format from savannah.gnu.org,
|
|
# FreeBSD distfiles is known to have version 1.13.
|
|
|
|
SRC_URI[md5sum] = "e83a364c8544fc66cccb552369d93220"
|
|
SRC_URI[sha256sum] = "7cd3fcda68fc9900efcf7784313e3bdd1303fef1a0546db9723f5e5564dd05b6"
|
|
|
|
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
|
|
# Info dir listing isn't interesting at this point so remove it if it exists.
|
|
if [ -e "${D}${infodir}/dir" ]; then
|
|
rm -f ${D}${infodir}/dir
|
|
fi
|
|
}
|
|
|
|
BBCLASSEXTEND += "native nativesdk"
|