30 lines
819 B
Plaintext
30 lines
819 B
Plaintext
# Tanım: PKZIP tarafından yapılanlar gibi .zip arşivlerini açar.
|
||
# URL: http://www.info-zip.org
|
||
# Paketçi: milisarge
|
||
# Gerekler:
|
||
# Grup: sistem
|
||
|
||
isim=unzip
|
||
surum=6.0
|
||
devir=1
|
||
|
||
kaynak=(http://downloads.sourceforge.net/infozip/unzip60.tar.gz)
|
||
|
||
|
||
derle() {
|
||
cd $isim${version/./}
|
||
export CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=64 -DACORN_FTYPE_NFS \
|
||
-DWILD_STOP_AT_DIR -DLARGE_FILE_SUPPORT -DUNICODE_SUPPORT \
|
||
-DUNICODE_WCHAR -DUTF8_MAYBE_NATIVE -DNO_LCHMOD -DDATE_FORMAT=DF_YMD \
|
||
-DUSE_BZIP2 -DNATIVE"
|
||
case `uname -m` in
|
||
x86_64)
|
||
make -f unix/Makefile LOCAL_UNZIP="$CFLAGS" prefix=/usr \
|
||
LF2="" D_USE_BZ2=-DUSE_BZIP2 L_BZ2=-lbz2 unzips;;
|
||
i?86)
|
||
make -f unix/Makefile \
|
||
LOCAL_UNZIP=-D_FILE_OFFSET_BITS=64 linux;;
|
||
esac
|
||
make -f unix/Makefile prefix=$PKG/usr MANDIR=$PKG/usr/share/man/man1 install
|
||
}
|