1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-30 02:11:21 +00:00
morpheus/cross-scripts/libtorrent
2013-09-17 15:40:13 +01:00

25 lines
427 B
Plaintext

url=$mirror/libtorrent-0.13.3.tar.gz
fetch() {
wget -c $url -O src/libtorrent-0.13.3.tar.gz
}
unpack() {
pushd src
[ -d libtorrent-0.13.3 ] || tar xzf libtorrent-0.13.3.tar.gz
popd
}
build() {
pushd src/libtorrent-0.13.3
CC=musl-gcc ./configure --prefix=$top/cross --disable-shared || return 1
make CC=musl-gcc -j$nprocs || return 1
popd
}
install() {
pushd src/libtorrent-0.13.3
make install || return 1
popd
}