You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
244 B
16 lines
244 B
15 years ago
|
#/bin/sh
|
||
|
|
||
|
DATE=$(date +%Y%m%d)
|
||
|
EXPORT_DIR=phonon
|
||
|
|
||
|
set -x
|
||
|
rm -rf $EXPORT_DIR
|
||
|
# app
|
||
|
svn export svn://anonsvn.kde.org/home/kde/trunk/kdesupport/phonon $EXPORT_DIR/
|
||
|
|
||
|
tar cjf $EXPORT_DIR-${DATE}svn.tar.bz2 $EXPORT_DIR
|
||
|
|
||
|
# cleanup
|
||
|
rm -rf $EXPORT_DIR
|
||
|
|