contrib/libzip/Pkgfile
2013-09-29 18:21:02 +09:00

26 lines
466 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.1
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
}