summaryrefslogtreecommitdiff
path: root/curl/Pkgfile
blob: 0af3c98c7227306acad622246e8f0e7f2e78c967 (plain)
    1 # Description: A tool for transfering files with URL syntax
    2 # Maintainer:  CRUX System Team, core-ports at crux dot nu
    3 # URL:         http://curl.haxx.se 
    4 # Depends on:  openssl, zlib
    5 
    6 name=curl
    7 version=7.47.0
    8 release=1
    9 source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
   10 
   11 build() {
   12     cd $name-$version
   13     ./configure --prefix=/usr \
   14                 --enable-ipv6 \
   15                 --without-libidn \
   16                 --without-cyassl \
   17                 --enable-threaded-resolver \
   18                 --with-ca-bundle=/etc/ssl/cert.pem
   19     make
   20     make DESTDIR=$PKG install
   21 }

Generated by cgit