summaryrefslogtreecommitdiffstats
path: root/openembedded/packages/zip/zip_2.31.bb
blob: 6c588a55e5887b1b5a004906758b5ac5cbdd4585 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
}