opt/neon/Pkgfile

26 lines
585 B
Plaintext
Raw Normal View History

2009-01-12 10:20:57 +01:00
# Description: Neon is an HTTP and WebDAV client library
2018-08-24 11:43:08 +02:00
# URL: http://www.webdav.org/neon
# Maintainer: Juergen Daubert, jue at crux dot nu
# Depends on: openssl expat
2006-02-23 16:26:10 +01:00
name=neon
2016-10-05 14:25:43 +02:00
version=0.30.2
2016-01-21 00:53:15 +01:00
release=2
2018-08-24 11:43:08 +02:00
source=(https://fossies.org/linux/www/$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 \
--disable-static \
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
rm -rf $PKG/usr/share/{doc,locale}
2006-02-23 16:26:10 +01:00
}