2009-01-12 09:20:57 +00:00
|
|
|
# Description: Neon is an HTTP and WebDAV client library
|
2021-09-24 17:50:33 +02:00
|
|
|
# URL: https://notroj.github.io/neon/
|
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
|
|
# Depends on: openssl expat zlib
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=neon
|
2022-01-13 13:42:18 +01:00
|
|
|
version=0.32.2
|
2020-04-06 15:23:20 +02:00
|
|
|
release=1
|
2020-04-25 14:51:56 +02:00
|
|
|
source=(https://notroj.github.io/neon/$name-$version.tar.gz)
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
build() {
|
2021-09-24 17:50:33 +02:00
|
|
|
cd $name-$version
|
2016-01-20 23:53:15 +00:00
|
|
|
|
2021-09-24 17:50:33 +02:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-ssl \
|
|
|
|
--with-expat \
|
|
|
|
--enable-shared \
|
|
|
|
--disable-nls \
|
|
|
|
--disable-debug
|
2016-01-20 23:53:15 +00:00
|
|
|
|
2021-09-24 17:50:33 +02:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install-{lib,headers,config}
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|