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 | |
b751b192 | 4 | # Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu |
6dca1d21 JB |
5 | # Depends on: |
6 | ||
7 | name=unzip | |
8 | version=6.0 | |
c7236528 | 9 | release=2 |
54ee63db | 10 | source=(http://downloads.sourceforge.net/sourceforge/infozip/${name}${version//./}.tar.gz) |
6dca1d21 JB |
11 | |
12 | build() { | |
13 | cd ${name}${version//./} | |
5e8ffe1d | 14 | |
6dca1d21 JB |
15 | sed -e "s|gcc |$CC |g" \ |
16 | -e "s|AS=.*|AS=$CC|g" \ | |
17 | -e "s|LD=.*|LD=$CC|g" \ | |
18 | -i unix/Makefile | |
19 | ||
20 | make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr linux | |
21 | make -f unix/Makefile prefix=$PKG/usr install | |
5e8ffe1d | 22 | |
6dca1d21 JB |
23 | ln -sf unzip $PKG/usr/bin/zipinfo |
24 | } |