1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-20 08:21:37 +02:00
soundtouch/createsrcpack
2011-07-15 20:21:28 +00:00

18 lines
359 B
Plaintext
Executable File

# Helper script for building a source code release package
# $Id$
rm -Rf soundtouch
rm soundtouch.zip
rm soundtouch.tar.gz
mkdir soundtouch
cp -R * soundtouch
cd soundtouch
rm -Rf soundtouch
rm -rf `find . -type d -name .svn`
rm createsrcpack
chmod u+x bootstrap
cd ..
zip -r9 soundtouch.zip soundtouch
tar -chf soundtouch.tar soundtouch
gzip soundtouch.tar