mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
725 B
Bash
22 lines
725 B
Bash
# ARM Maintaner: Krzysztof Warzecha <kwarzecha7@gmail.com>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
# Maintainer: Andreas Radke <andyrtr@archlinux.org>
|
|
|
|
# KEEP LIBTOOL FILES!
|
|
pkgname=neon
|
|
pkgver=0.28.4
|
|
pkgrel=1
|
|
pkgdesc="HTTP and WebDAV client library with a C interface"
|
|
arch=('arm')
|
|
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=('6c3b94362af743d046e198e9fcbe4a85')
|
|
|
|
build() {
|
|
cd ${srcdir}/${pkgname}-${pkgver}
|
|
./configure --prefix=/usr --with-ssl --with-expat --enable-shared --disable-static
|
|
make || return 1
|
|
make DESTDIR=${pkgdir} install
|
|
}
|