opt/neon/Pkgfile

26 lines
581 B
Plaintext
Raw Normal View History

2009-01-12 10:20:57 +01: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 16:26:10 +01:00
name=neon
2020-04-25 14:51:56 +02:00
version=0.31.1
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() {
cd $name-$version
2016-01-21 00:53:15 +01:00
2006-02-23 16:26:10 +01:00
./configure --prefix=/usr \
--with-ssl \
--with-expat \
--enable-shared \
2020-04-25 14:51:56 +02:00
--disable-nls \
2008-08-04 15:18:28 +02:00
--disable-debug
2016-01-21 00:53:15 +01:00
2006-02-23 16:26:10 +01:00
make
make DESTDIR=$PKG install
2016-01-21 00:53:15 +01:00
2020-04-25 14:51:56 +02:00
rm -r $PKG/usr/share/doc
2006-02-23 16:26:10 +01:00
}