blob: c873d734ce05882f0d483e8aaa047f28762dc700 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
DESCRIPTION = "A (de)compression library for the ZIP format"
SECTION = "console/utils"
LICENSE = "Info-ZIP"
SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/unzip${PV}.tar.gz"
S = "${WORKDIR}/unzip-5.52"
do_compile() {
make -f unix/Makefile generic
}
do_install() {
make -f unix/Makefile install prefix=${D}${prefix}
}
|