opt/neon/Pkgfile

25 lines
484 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.32.5
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-{lib,headers,config}
}