opt/neon/Pkgfile

25 lines
484 B
Plaintext
Raw Normal View History

2009-01-12 10:20:57 +01: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 16:26:10 +01:00
name=neon
2023-01-23 11:00:44 +01:00
version=0.32.5
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 16:26:10 +01:00
build() {
2021-09-24 17:50:33 +02:00
cd $name-$version
2016-01-21 00:53:15 +01:00
2021-09-24 17:50:33 +02:00
./configure \
--prefix=/usr \
--with-ssl \
--with-expat \
--enable-shared \
--disable-nls \
--disable-debug
2016-01-21 00:53:15 +01:00
2021-09-24 17:50:33 +02:00
make
make DESTDIR=$PKG install-{lib,headers,config}
2006-02-23 16:26:10 +01:00
}