blob: 1302c2610de402df139ff5822c903b1b269fe50d (
plain)
1 # Description: Library to handle zip files
2 # URL: http://nih.at/libzip/
3 # Maintainer: Alan Mizrahi, alan at mizrahi dot com dot ve
4 # Depends on:
5
6 name=libzip
7 version=0.11.1
8 release=2
9 source=(
10 http://nih.at/$name/$name-$version.tar.xz
11 libzip-includes.patch
12 )
13
14 build() {
15 cd $name-$version
16
17 # Fixes the installation of zipconf.h
18 patch -p1 -i $SRC/libzip-includes.patch
19 autoreconf -i
20
21 ./configure \
22 --prefix=/usr \
23 --man=/usr/man
24 make DESTDIR=$PKG install
25 }
|