diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-04-12 21:14:11 +0200 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2012-04-12 21:15:49 +0200 |
| commit | 2aae74545855e133d6f0e6ce56bbb8995fd1b51e (patch) | |
| tree | 988e00bb652eb50310ef4f79cc92a45e184ada96 /tools | |
| parent | e9d5f6cb61fb9ef997213b64b8086574f591f3a5 (diff) | |
| download | rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.zip rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.gz rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.bz2 rockbox-2aae74545855e133d6f0e6ce56bbb8995fd1b51e.tar.xz | |
Add new tarball generation script.
The old script depended on svn. An earlier version of this script has already
been used in the 3.11. branch.
Change-Id: Id03abb8f7bd005ede343243194c4453f0b2e8943
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/release/tarball.sh | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/tools/release/tarball.sh b/tools/release/tarball.sh deleted file mode 100755 index 21335dd..0000000 --- a/tools/release/tarball.sh +++ /dev/null @@ -1,34 +0,0 @@ -#!/bin/sh - -version="3.0" - -srcdir=. -tempdir=rockbox-temp -outfile=rockbox-$version.7z - -# remove previous leftovers -rm -rf $tempdir - -cd $srcdir - -# create the dir name based on revision number -rbdir=$tempdir/rockbox-$version - -# create new temp dir -mkdir -p $rbdir - -# copy everything to the temp dir -svn ls -R | xargs -Imoo cp --parents moo $rbdir 2>/dev/null - -cd $tempdir - -rm -f $outfile - -# 7zip the entire directory -7zr a $outfile rockbox* - -# world readable please -chmod a+r $outfile - -# remove temporary files -rm -rf $tempdir |