1
0
mirror of https://git.yoctoproject.org/poky synced 2026-06-03 13:49:49 +00:00

Rename /openembedded/ -> /meta/

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@530 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie
2006-07-21 10:10:31 +00:00
parent 2cf0eadf9f
commit b2f192faab
1725 changed files with 6 additions and 6 deletions
+9
View File
@@ -0,0 +1,9 @@
SECTION = "console/utils"
inherit native
include zip_${PV}.bb
S = "${WORKDIR}/zip-${PV}"
do_stage() {
install -d ${STAGING_BINDIR}
install zip zipnote zipsplit zipcloak ${STAGING_BINDIR}
}
+17
View File
@@ -0,0 +1,17 @@
SECTION = "console/utils"
SRC_URI = "http://ftp.info-zip.org/pub/infozip/src/zip231.tar.gz"
LICENSE = "Info-ZIP"
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
}