mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-08 20:12:27 +01:00
18 lines
359 B
Plaintext
Executable File
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
|