premiere-libtorrent/build_dist.sh

26 lines
470 B
Bash
Raw Permalink 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
python3 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
2019-03-28 00:35:12 +01:00
make dist
2020-04-18 17:07:41 +02:00
VERSION=1.2.6
2019-03-28 00:35:12 +01:00
tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz
cd libtorrent-rasterbar-${VERSION}/test
bjam link=static $1
2014-11-12 17:57:59 +01:00