1
0
mirror of git://git.2f30.org/morpheus.git synced 2024-06-29 22:51:21 +00:00
morpheus/cross-scripts/libtorrent
2013-09-26 15:34:07 +01:00

27 lines
523 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
CXX="x86_64-linux-musl-g++ -static" ./configure --prefix=$libcroot \
--disable-openssl --disable-shared --enable-static || return 1
sed -i 's/#define USE_EXECINFO 1//g' config.h
make -j$nprocs || return 1
popd
}
install() {
pushd src/libtorrent-0.13.3
make install || return 1
popd
}