mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
21 lines
603 B
Bash
21 lines
603 B
Bash
# $Id: PKGBUILD 17482 2008-10-30 16:58:25Z pierre $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=libzip
|
|
pkgver=0.9
|
|
pkgrel=1
|
|
pkgdesc="libzip is a C library for reading, creating, and modifying zip archives"
|
|
url="http://www.nih.at/libzip/index.html"
|
|
license=('GPL2')
|
|
arch=('i686' 'x86_64')
|
|
depends=('zlib')
|
|
source=(http://www.nih.at/libzip/$pkgname-$pkgver.tar.gz)
|
|
options=(!libtool)
|
|
md5sums=('5b753dfe336f6fe87b0e698b382c3071')
|
|
|
|
build() {
|
|
cd $startdir/src/$pkgname-$pkgver
|
|
./configure --prefix=/usr
|
|
make || return 1
|
|
make DESTDIR=$startdir/pkg install
|
|
}
|