# $Id: PKGBUILD 124952 2011-05-25 12:20:04Z andrea $ # Maintainer: # Contributor: Tom Newsom # Contributor: Juergen Hoetzel pkgname=neon pkgver=0.29.6 pkgrel=1 pkgdesc="HTTP and WebDAV client library with a C interface" arch=('i686' 'x86_64' 'mips64el') license=('GPL' 'LGPL') depends=('krb5' 'expat' 'ca-certificates') url="http://www.webdav.org/neon/" source=("http://www.webdav.org/${pkgname}/${pkgname}-${pkgver}.tar.gz") md5sums=('591e0c82e6979e7e615211b386b8f6bc') options=('libtool') # FS#16067 build() { cd "${srcdir}"/${pkgname}-${pkgver} ./configure --prefix=/usr \ --with-expat \ --enable-shared \ --disable-static \ --with-ssl=openssl \ --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt make } package() { cd "${srcdir}"/${pkgname}-${pkgver} make DESTDIR="${pkgdir}" install }