cleanup tarball build script

This commit is contained in:
arvidn 2017-12-29 10:50:48 +01:00
parent a46bd839f0
commit 473b86a8e6
2 changed files with 11 additions and 15 deletions

View File

@ -1,25 +1,15 @@
#!/bin/sh #!/bin/sh
make clean set -e
set -x
python tools/clean.py
cd docs cd docs
make clean make RST2HTML=rst2html-2.7.py
make RST2HTML=rst2html.py
cd .. cd ..
#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 -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 examples/.dep examples/.libs
rm -rf test/Makefile test/Makefile.in test/.dep test/.lib
rm -rf bindings/Makefile bindings/Makefile.in bindings/.dep bindings/.libs
rm -f bindings/python/Makefile bindings/python/Makefile.in
chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp
./autotool.sh ./autotool.sh

View File

@ -13,6 +13,7 @@ def clean():
'upnp.log', 'upnp.log',
'natpmp.log', 'natpmp.log',
'bin', 'bin',
'build-aux',
'.deps', '.deps',
'test_tmp_*', 'test_tmp_*',
'bjam_build.*.xml' 'bjam_build.*.xml'
@ -33,6 +34,11 @@ def clean():
'lib*.a', 'lib*.a',
'Jamfile.rej', 'Jamfile.rej',
'Jamfile.orig', 'Jamfile.orig',
'autom4te.cache',
'configure',
'config.report',
'config.log',
'.lib',
] ]
directories = [ directories = [