summaryrefslogtreecommitdiff
path: root/neon/Pkgfile
blob: 291e3dc597fa81cc364e82564c69a3813624f5ea (plain)
    1 # Description: Neon is an HTTP and WebDAV client library
    2 # URL:         https://notroj.github.io/neon/
    3 # Maintainer:  Juergen Daubert, jue at crux dot nu
    4 # Depends on:  openssl expat zlib
    5 
    6 name=neon
    7 version=0.31.1
    8 release=1
    9 source=(https://notroj.github.io/neon/$name-$version.tar.gz)
   10 
   11 build() {
   12     cd $name-$version
   13 
   14     ./configure --prefix=/usr \
   15                 --with-ssl \
   16                 --with-expat \
   17                 --enable-shared \
   18                 --disable-nls \
   19                 --disable-debug
   20 
   21     make
   22     make DESTDIR=$PKG install
   23 
   24     rm -r $PKG/usr/share/doc
   25 }

Generated by cgit