blob: 9fc0baa75e782235ebba956e72d13a1ecbd20cdc (
plain)
1 # Description: Neon is an HTTP and WebDAV client library
2 # URL: https://notroj.github.io/neon/
3 # Maintainer: Juergen Daubert, jue at crux dot nu
4 # Depends on: openssl expat zlib
5
6 name=neon
7 version=0.32.4
8 release=1
9 source=(https://notroj.github.io/neon/$name-$version.tar.gz)
10
11 build() {
12 cd $name-$version
13
14 ./configure \
15 --prefix=/usr \
16 --with-ssl \
17 --with-expat \
18 --enable-shared \
19 --disable-nls \
20 --disable-debug
21
22 make
23 make DESTDIR=$PKG install-{lib,headers,config}
24 }
|