26 lines
581 B
Plaintext
26 lines
581 B
Plaintext
# Description: Neon is an HTTP and WebDAV client library
|
|
# URL: https://notroj.github.io/neon/
|
|
# Maintainer: Juergen Daubert, jue at crux dot nu
|
|
# Depends on: openssl expat zlib
|
|
|
|
name=neon
|
|
version=0.31.2
|
|
release=1
|
|
source=(https://notroj.github.io/neon/$name-$version.tar.gz)
|
|
|
|
build() {
|
|
cd $name-$version
|
|
|
|
./configure --prefix=/usr \
|
|
--with-ssl \
|
|
--with-expat \
|
|
--enable-shared \
|
|
--disable-nls \
|
|
--disable-debug
|
|
|
|
make
|
|
make DESTDIR=$PKG install
|
|
|
|
rm -r $PKG/usr/share/doc
|
|
}
|