Welcome to mirror list, hosted at ThFree Co, Russian Federation.

createsrcpack - github.com/alexmarsev/soundtouch.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3519a0d48592921abc416f6cbb5753ed2037726f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# 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