Commit | Line | Data |
---|---|---|
6dca1d21 JB |
1 | # Description: Decompress utility for zipfiles |
2 | # URL: http://infozip.sourceforge.net/UnZip.html | |
3 | # Maintainer: CRUX System Team, core-ports at crux dot nu | |
4 | # Ach Maintainer: CRUX ARM System Team | |
5 | # Depends on: | |
6 | ||
7 | name=unzip | |
8 | version=6.0 | |
9 | release=1 | |
10 | source=(http://dl.sourceforge.net/sourceforge/infozip/${name}${version//./}.tar.gz) | |
11 | ||
12 | build() { | |
13 | cd ${name}${version//./} | |
14 | sed -e "s|gcc |$CC |g" \ | |
15 | -e "s|AS=.*|AS=$CC|g" \ | |
16 | -e "s|LD=.*|LD=$CC|g" \ | |
17 | -i unix/Makefile | |
18 | ||
19 | make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr linux | |
20 | make -f unix/Makefile prefix=$PKG/usr install | |
21 | ln -sf unzip $PKG/usr/bin/zipinfo | |
22 | } |