Shell同時にlibcurlとzlibをコンパイルしてインストールする

#!/bin/sh

set -e
echo “libcurlをコンパイルする…"
cd curl-7.23.1
chmod u+x configure
./configure –disable-ipv6 –disable-sspi –disable-ldap –disable-ldaps –without-ssl
make
make install
echo “libcurl 成功に作成した."
cd ..
echo “zlibをコンパイルする…"
cd zlib-1.2.5
chmod u+x configure
./configure
make
make install
echo “zlib 成功に作成した."

Source

Posted by arkgame