core/neon/PKGBUILD

24 lines
621 B
Bash
Raw Normal View History

2010-03-28 23:00:40 +08:00
pkgname=neon
pkgver=0.30.1
2016-03-23 02:41:17 +08:00
pkgrel=2
2010-03-28 23:00:40 +08:00
pkgdesc="HTTP and WebDAV client library with a C interface"
arch=('x86_64')
2010-03-28 23:00:40 +08:00
license=('GPL' 'LGPL')
2011-08-19 05:53:29 +08:00
depends=('krb5' 'expat' 'ca-certificates')
2010-03-28 23:00:40 +08:00
url="http://www.webdav.org/neon/"
2010-05-16 23:08:55 +08:00
source=("http://www.webdav.org/neon/${pkgname}-${pkgver}.tar.gz")
md5sums=('231adebe5c2f78fded3e3df6e958878e')
2010-03-28 23:00:40 +08:00
build() {
cd ${srcdir}/${pkgname}-${pkgver}
2010-05-16 23:08:55 +08:00
./configure --prefix=/usr \
--with-expat --enable-shared --disable-static \
--with-ssl=openssl --with-ca-bundle=/etc/ssl/certs/ca-certificates.crt
2011-08-19 05:53:29 +08:00
make
2010-04-05 19:44:27 +08:00
}
package() {
cd ${srcdir}/${pkgname}-${pkgver}
2010-03-28 23:00:40 +08:00
make DESTDIR=${pkgdir} install
}