opt/neon/Pkgfile

25 lines
603 B
Plaintext
Raw Normal View History

2007-01-23 17:56:01 +01:00
# Maintainer: Simone Rota, sip at crux dot nu
2006-02-23 16:26:10 +01:00
# Description: neon is an HTTP and WebDAV client library
# URL: http://www.webdav.org/neon
# Depends on: openssl expat
name=neon
2008-08-23 14:46:11 +02:00
version=0.28.3
2006-02-23 16:26:10 +01:00
release=1
source=(http://www.webdav.org/neon/neon-${version}.tar.gz)
build() {
cd $name-$version
./configure --prefix=/usr \
2008-08-04 15:18:28 +02:00
--mandir=/usr/man \
2006-02-23 16:26:10 +01:00
--with-ssl \
--with-expat \
--enable-shared \
--disable-static \
2008-08-04 15:18:28 +02:00
--disable-debug
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2008-08-04 15:18:28 +02:00
2006-02-23 16:26:10 +01:00
rm -rf $PKG/usr/share/
}