contrib/libzip/Pkgfile
2014-04-07 16:21:54 +09:00

26 lines
467 B
Plaintext

# Description: Library to handle zip files
# URL: http://nih.at/libzip/
# Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
# Depends on:
name=libzip
version=0.11.2
release=2
source=(
http://nih.at/$name/$name-$version.tar.xz
libzip-includes.patch
)
build() {
cd $name-$version
# Fixes the installation of zipconf.h
patch -p1 -i $SRC/libzip-includes.patch
autoreconf -i
./configure \
--prefix=/usr \
--man=/usr/man
make DESTDIR=$PKG install
}