contrib/libzip/Pkgfile

26 lines
467 B
Plaintext
Raw Normal View History

2013-09-28 14:05:28 +02:00
# 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
2014-04-07 09:21:54 +02:00
version=0.11.2
2013-09-29 11:21:02 +02:00
release=2
2013-09-28 14:05:28 +02:00
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
2014-04-07 09:21:54 +02:00
2013-09-28 14:05:28 +02:00
./configure \
--prefix=/usr \
2013-09-29 11:21:02 +02:00
--man=/usr/man
2013-09-28 14:05:28 +02:00
make DESTDIR=$PKG install
}