summaryrefslogtreecommitdiffstats
path: root/abs/extra/neon/PKGBUILD
blob: 4aa3802f3ca14472fe182a3783b3272c41af1bb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id: PKGBUILD 10269 2008-08-25 13:23:04Z andyrtr $
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
# Maintainer: Andreas Radke <andyrtr@archlinux.org>

# KEEP LIBTOOL FILES!
pkgname=neon
pkgver=0.28.3
pkgrel=2
pkgdesc="HTTP and WebDAV client library with a C interface"
arch=('i686' 'x86_64')
license=('GPL' 'LGPL')
depends=('openssl>=0.9.8g-4' 'heimdal>=1.2.1' 'zlib' 'expat>=2.0.1' 'db>=4.7.25')
url="http://www.webdav.org/neon/"
source=(http://www.webdav.org/neon/${pkgname}-${pkgver}.tar.gz)
md5sums=('47599a328862ce64ac3c52726d6daa12')

build() {
  cd ${srcdir}/${pkgname}-${pkgver}
  ./configure --prefix=/usr --with-ssl  --with-expat --enable-shared --disable-static
  make || return 1
  make DESTDIR=${pkgdir} install
}