comparison network/curl/curl.sh @ 533:9f90de3d806f

network: use new FHS
author David Demelier <markand@malikania.fr>
date Wed, 10 Apr 2019 20:16:00 +0200
parents 5298f6a3f180
children bad483aace64
comparison
equal deleted inserted replaced
532:341987b63363 533:9f90de3d806f
80 LDFLAGS="$LDFLAGS" \ 80 LDFLAGS="$LDFLAGS" \
81 LIBS="$LIBS" \ 81 LIBS="$LIBS" \
82 ./configure \ 82 ./configure \
83 --build=$CBUILD \ 83 --build=$CBUILD \
84 --host=$CHOST \ 84 --host=$CHOST \
85 --prefix=/usr \ 85 --prefix=/ \
86 --disable-static \ 86 --disable-static \
87 --enable-shared \ 87 --enable-shared \
88 --with-ca-bundle=/etc/ssl/cert.pem \ 88 --with-ca-bundle=/etc/ssl/cert.pem \
89 --without-cyassl \ 89 --without-cyassl \
90 --without-gnutls \ 90 --without-gnutls \
96 $with_nghttp2 \ 96 $with_nghttp2 \
97 $with_ssh \ 97 $with_ssh \
98 $with_ssl 98 $with_ssl
99 make 99 make
100 make install DESTDIR=$DESTDIR 100 make install DESTDIR=$DESTDIR
101 rm -f $DESTDIR/usr/lib/libcurl.la 101 rm -f $DESTDIR/lib/libcurl.la
102 102
103 popd 103 popd
104 rm -rf $PKGNAME-$PKGVERSION 104 rm -rf $PKGNAME-$PKGVERSION
105 } 105 }