premiere-libtorrent/build_dist.sh

22 lines
735 B
Bash
Raw Normal View History

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
cd docs
2017-12-29 10:50:48 +01:00
make RST2HTML=rst2html-2.7.py
cd ..
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
./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
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
make V=1 -j8 dist
2014-11-12 17:57:59 +01:00