blob: a189b85abb1e2f1ef0b8762343d3a46bdfd26a6b (
plain)
1 # Description: Neon is an HTTP and WebDAV client library
2 # URL: http://www.webdav.org/neon
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: openssl expat
5
6 name=neon
7 version=0.30.2
8 release=2
9 source=(https://fossies.org/linux/www/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure --prefix=/usr \
15 --with-ssl \
16 --with-expat \
17 --enable-shared \
18 --disable-static \
19 --disable-debug
20
21 make
22 make DESTDIR=$PKG install
23
24 rm -rf $PKG/usr/share/{doc,locale}
25 }
|