mirror of
https://git.yoctoproject.org/poky
synced 2026-02-11 03:03:02 +01:00
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1437 311d38ba-8fff-0310-9ca6-ca027cbcb966
20 lines
552 B
PHP
20 lines
552 B
PHP
DESCRIPTION = "Archiver for .zip files"
|
|
SECTION = "console/utils"
|
|
LICENSE = "Info-ZIP"
|
|
|
|
SRC_URI = "http://ftp.info-zip.org/pub/infozip/src/zip${@bb.data.getVar('PV',d,1).replace('.', '')}.tar.gz"
|
|
|
|
EXTRA_OEMAKE = "'CC=${CC}' 'BIND=${CC}' 'AS=${CC} -c' 'CPP=${CPP}' \
|
|
'CFLAGS=-I. -DUNIX ${CFLAGS}' 'INSTALL=install' \
|
|
'BINFLAGS=0755' 'INSTALL_D=install -d'"
|
|
|
|
do_compile() {
|
|
oe_runmake -f unix/Makefile generic
|
|
}
|
|
|
|
do_install() {
|
|
oe_runmake -f unix/Makefile prefix=${D}${prefix} \
|
|
BINDIR=${D}${bindir} MANDIR=${D}${mandir}/man1 \
|
|
install
|
|
}
|