diff options
author | Michael Hanson <mihanson@linhes.org> | 2011-11-04 19:21:13 (GMT) |
---|---|---|
committer | Michael Hanson <mihanson@linhes.org> | 2011-11-04 19:21:13 (GMT) |
commit | 94f21428c8ed60129ee5e14b1914a8cfe1bcdb2a (patch) | |
tree | 27c63c2fa679256dbc46bbff241c41db98e9d244 /abs/extra/neon/PKGBUILD | |
parent | e3a0f9ba95aa059d76a57c7821a5ccc6a80a5f84 (diff) | |
parent | 67989fe1be117ac23fa3a98acbc2794a17d7d0ed (diff) | |
download | linhes_pkgbuild-94f21428c8ed60129ee5e14b1914a8cfe1bcdb2a.zip linhes_pkgbuild-94f21428c8ed60129ee5e14b1914a8cfe1bcdb2a.tar.gz linhes_pkgbuild-94f21428c8ed60129ee5e14b1914a8cfe1bcdb2a.tar.bz2 |
Merge branch 'testing' of knoppmyth.net:linhes_pkgbuild into testing
Diffstat (limited to 'abs/extra/neon/PKGBUILD')
-rw-r--r-- | abs/extra/neon/PKGBUILD | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/abs/extra/neon/PKGBUILD b/abs/extra/neon/PKGBUILD new file mode 100644 index 0000000..64e21c5 --- /dev/null +++ b/abs/extra/neon/PKGBUILD @@ -0,0 +1,35 @@ +# $Id: PKGBUILD 129362 2011-06-27 05:41:06Z andrea $ +# Maintainer: +# Contributor: Tom Newsom <Jeepster@gmx.co.uk> +# Contributor: Juergen Hoetzel <juergen@archlinux.org> + +pkgname=neon +pkgver=0.29.6 +pkgrel=2 +pkgdesc="HTTP and WebDAV client library with a C interface" +arch=('i686' 'x86_64') +license=('GPL' 'LGPL') +depends=('heimdal' '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 + + # fix invalid .so links in man pages (FS#24902) + sed -i '/^\.so/s|\.so \([^.]\+\)\.\([[:digit:]]\)|.so man\2/\1.\2|' doc/man/* +} + +package() { + cd "${srcdir}"/${pkgname}-${pkgver} + make DESTDIR="${pkgdir}" install +} |