forked from premiere/premiere-libtorrent
23 lines
912 B
Bash
Executable File
23 lines
912 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
#clear out any extended attributes that Finder may add
|
|
sudo xattr -r -d com.apple.FinderInfo *
|
|
|
|
rm -f config.log config.report configure
|
|
rm -f m4/libtool.m4 m4/lt~obsolete.m4 m4/ltsugar.m4 m4/ltversion.m4 m4/ltoptions.m4
|
|
rm -fr autom4te.cache build-aux
|
|
rm -f Makefile Makefile.in
|
|
rm -f src/Makefile src/Makefile.in
|
|
rm -f include/libtorrent/Makefile include/libtorrent/Makefile.in
|
|
rm -f examples/Makefile examples/Makefile.in
|
|
rm -f test/Makefile test/Makefile.in
|
|
rm -f zlib/Makefile zlib/Makefile.in
|
|
rm -f bindings/Makefile bindings/Makefile.in
|
|
rm -f bindings/python/Makefile bindings/python/Makefile.in
|
|
chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp
|
|
|
|
./autotool.sh
|
|
./configure --enable-python-binding --with-zlib=shipped --enable-examples=yes --enable-tests=yes --with-boost-system=mt --with-boost-python=mt --with-boost-thread=mt --with-boost-filesystem=mt
|
|
make -j 8 dist check
|