1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-28 11:21:21 +00:00
morpheus/cross-scripts/curl-7.32.0
2013-09-17 13:40:43 +01:00

26 lines
397 B
Plaintext

url=$mirror/curl-7.32.0.tar.gz
fetch() {
wget -c $url -O src/curl-7.32.0.tar.gz
}
unpack() {
pushd src
[ -d curl-7.32.0 ] || tar xzf curl-7.32.0.tar.gz
popd
}
build() {
pushd src/curl-7.32.0
CC=musl-gcc ./configure --prefix=$top/cross --with-ssl \
--with-random=/dev/urandom --disable-shared
make CC=musl-gcc -j$nprocs
popd
}
install() {
pushd src/curl-7.32.0
make install
popd
}