premiere-libtorrent/build_dist.sh

22 lines
452 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
2018-10-07 00:10:51 +02:00
make
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
2018-10-07 00:10:51 +02:00
./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes
make V=1 -j16 check
2018-10-07 00:10:51 +02:00
./configure --enable-python-binding --enable-examples=yes --enable-encryption
make V=1 -j16 dist
2014-11-12 17:57:59 +01:00