milis/talimatname/temel/curl/talimat

46 lines
957 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: Utility for transferring files with URL syntax to many protocols
# URL: http://curl.haxx.se/
# Paketçi: milisarge@gmail.com
# Gerekler:
name=curl
version=7.47.1
release=1
source=(http://curl.haxx.se/download/$name-$version.tar.lzma)
derle() {
cd $name-$version
./configure --prefix=/usr \
--bindir=/bin \
--with-ca-path=/etc/ssl/certs \
--enable-threaded-resolver
make
make DESTDIR=$PKG install
find docs \( -name Makefile\* \
-o -name \*.1 \
-o -name \*.3 \) \
-exec rm {} \;
install -v -d -m755 $PKG/usr/share/doc/curl-$version
cp -v -R docs/* \
$PKG/usr/share/doc/curl-$version
# reorganise the libs
mkdir $PKG/lib
mv $PKG/usr/lib/libcurl.so.4.4.0 \
$PKG/lib/
for LIB in libcurl.so{,.4}
do
ln -sv libcurl.so.4.4.0 $PKG/lib/$LIB
rm $PKG/usr/lib/$LIB
ln -sv ../../lib/libcurl.so.4.4.0 \
$PKG/usr/lib/$LIB
done
ln -sv ../../lib/libcurl.so.4.4.0 \
$PKG/usr/lib/libcurl.so.4.4.0
}