CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
neon: initial import
[attic/ports/opt-cross.git] / neon / Pkgfile
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
8 name=neon
9 version=0.29.4
10 release=1
11 source=(http://www.webdav.org/$name/$name-$version.tar.gz)
12
13 build() {
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 }