blob: f8fc132b7a340dc3210d7fd4713ad5d3c2a6d898 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# Description: Programmes pour compression/décompression de fichiers
# URL: http://infozip.sourceforge.net/Zip.html
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on:
name=zip
version=3.0
release=1
source=(ftp://ftp.info-zip.org/pub/infozip/src/zip30.zip)
build() {
cd ${name}30
make -f unix/Makefile prefix=/usr generic_gcc
make prefix=$PKG/usr MANDIR=$PKG/usr/share/man/man1 -f unix/Makefile install
}
|