summaryrefslogtreecommitdiff
path: root/neon/Pkgfile
blob: 8c5bb97a95a1371bc3fe91c08de3699520247de3 (plain)
    1 # Description: Neon is an HTTP and WebDAV client library
    2 # URL: http://www.webdav.org/neon
    3 # Maintainer: Jose V Beneyto, sepen at crux dot nu
    4 # Packager: Simone Rota, sip at crux dot nu
    5 # Depends on: openssl expat 
    6 
    7 name=neon
    8 version=0.29.3
    9 release=1
   10 source=(http://www.webdav.org/$name/$name-$version.tar.gz)
   11 
   12 build() {
   13     cd $name-$version
   14     ./configure --prefix=/usr \
   15                 --mandir=/usr/man \
   16                 --with-ssl \
   17                 --with-expat \
   18                 --enable-shared \
   19                 --disable-static \
   20                 --disable-debug
   21     make
   22     make DESTDIR=$PKG install
   23     rm -rf $PKG/usr/share/
   24 }

Generated by cgit