CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
enchant: initial import (verified compilation).
[attic/ports/opt-cross.git] / neon / Pkgfile
CommitLineData
a87849c2
JB
1# Description: Neon is an HTTP and WebDAV client library
2# URL: http://www.webdav.org/neon
3# Packager: Simone Rota, sip at crux dot nu
4# Maintainer: Jose V Beneyto, sepen at crux dot nu
5# Arch Maintainer: CRUX-ARM System Team, devel at crux-arm dot nu
6# Depends on: openssl expat
7
8name=neon
9version=0.29.4
10release=1
11source=(http://www.webdav.org/$name/$name-$version.tar.gz)
12
13build() {
14 cd $name-$version
15
16 ./configure --build=$CHOST \
17 --host=$CTARGET \
18 --prefix=/usr \
19 --mandir=/usr/man \
20 --with-ssl \
21 --with-expat \
22 --enable-shared \
23 --disable-static \
24 --disable-debug
25
26 make
27 make DESTDIR=$PKG install
28 rm -rf $PKG/usr/share/
29}