blob: 1fc7a84eee0a88e951ea286ffd38e5c3efa74c5b (
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=2.32
release=1
source=( http://fresh.t-systems-sfr.com/unix/src/misc/zip232.tar.gz)
build() {
cd $name-$version
make -f unix/Makefile prefix=/usr generic_gcc
make prefix=$PKG/usr MANDIR=$PKG/usr/share/man/man1 -f unix/Makefile install
}
|