2008-10-17 02:48:25 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2017-12-29 10:50:48 +01:00
|
|
|
set -e
|
|
|
|
set -x
|
|
|
|
|
|
|
|
python tools/clean.py
|
2009-09-21 03:12:49 +02:00
|
|
|
|
2014-10-21 21:58:12 +02:00
|
|
|
cd docs
|
2017-12-29 10:50:48 +01:00
|
|
|
make RST2HTML=rst2html-2.7.py
|
2014-10-21 21:58:12 +02:00
|
|
|
cd ..
|
|
|
|
|
2009-09-10 04:22:13 +02:00
|
|
|
rm -f m4/libtool.m4 m4/lt~obsolete.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/ltoptions.m4
|
|
|
|
chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp
|
2008-10-17 02:48:25 +02:00
|
|
|
|
2009-09-10 04:22:13 +02:00
|
|
|
./autotool.sh
|
2017-10-05 02:47:40 +02:00
|
|
|
./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt --with-openssl=/usr/local/opt/openssl
|
2016-08-22 02:21:50 +02:00
|
|
|
make V=1 -j8 check
|
2014-05-11 10:20:42 +02:00
|
|
|
|
2017-10-05 02:47:40 +02:00
|
|
|
./configure --enable-python-binding --enable-examples=yes --enable-encryption --with-boost-system=mt --with-boost-chrono=mt --with-boost-random=mt --with-boost-python=mt --with-openssl=/usr/local/opt/openssl
|
2016-04-11 02:46:51 +02:00
|
|
|
make V=1 -j8 dist
|
2014-11-12 17:57:59 +01:00
|
|
|
|