1
0
mirror of https://github.com/RPCS3/soundtouch.git synced 2024-09-16 14:32:29 +02:00
soundtouch/createsrcpack

17 lines
352 B
Plaintext
Executable File

# Helper script for building a source code release package
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