mirror of
https://github.com/RPCS3/soundtouch.git
synced 2024-11-08 12:02:28 +01:00
16 lines
299 B
Plaintext
Executable File
16 lines
299 B
Plaintext
Executable File
# Helper script for building a source code release package
|
|
# $Id$
|
|
|
|
rm -Rf soundtouch
|
|
rm soundtouch.zip
|
|
mkdir soundtouch
|
|
cp -R * soundtouch
|
|
cd soundtouch
|
|
rm -rf `find . -type d -name .svn`
|
|
rm createsrcpack
|
|
chmod u+x bootstrap
|
|
./bootstrap
|
|
rm -rf autom4te.cache
|
|
cd ..
|
|
zip -r9 soundtouch.zip soundtouch
|