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
|
2018-10-07 00:10:51 +02:00
|
|
|
make
|
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
|
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
|
2014-05-11 10:20:42 +02:00
|
|
|
|
2020-02-03 14:18:33 +01:00
|
|
|
VERSION=1.2.4
|
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
|
|
|
|