2009-01-12 09:20:57 +00:00
|
|
|
# Description: Neon is an HTTP and WebDAV client library
|
2020-04-25 14:51:56 +02:00
|
|
|
# URL: https://notroj.github.io/neon/
|
2018-08-24 11:43:08 +02:00
|
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
2020-04-25 14:51:56 +02:00
|
|
|
# Depends on: openssl expat zlib
|
2006-02-23 15:26:10 +00:00
|
|
|
|
|
|
|
name=neon
|
2020-06-22 13:34:33 +02:00
|
|
|
version=0.31.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() {
|
|
|
|
cd $name-$version
|
2016-01-20 23:53:15 +00:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--with-ssl \
|
|
|
|
--with-expat \
|
|
|
|
--enable-shared \
|
2020-04-25 14:51:56 +02:00
|
|
|
--disable-nls \
|
2008-08-04 13:18:28 +00:00
|
|
|
--disable-debug
|
2016-01-20 23:53:15 +00:00
|
|
|
|
2006-02-23 15:26:10 +00:00
|
|
|
make
|
|
|
|
make DESTDIR=$PKG install
|
2016-01-20 23:53:15 +00:00
|
|
|
|
2020-04-25 14:51:56 +02:00
|
|
|
rm -r $PKG/usr/share/doc
|
2006-02-23 15:26:10 +00:00
|
|
|
}
|