12 lines
183 B
Bash
12 lines
183 B
Bash
#!/bin/bash
|
|
|
|
# $Id$
|
|
|
|
set -e
|
|
cd $PKGDIR
|
|
|
|
patch -Np1 -i ../unzip-5.52-security_fix-1.patch
|
|
make -f unix/Makefile LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux
|
|
make prefix=/usr install
|
|
|
|
exit
|