2007-06-05 04:29:16 +02:00
|
|
|
#!/bin/sh
|
2009-08-28 20:33:22 +02:00
|
|
|
# repo is at http://cryptsetup.googlecode.com/svn/trunk
|
2007-11-29 18:20:01 +01:00
|
|
|
set -e -x
|
2009-08-28 20:33:22 +02:00
|
|
|
SVN_VERSION="1.0.7_SVNr`svnversion .`"
|
2007-11-29 18:20:01 +01:00
|
|
|
rm -rf cryptsetup-${SVN_VERSION}
|
|
|
|
svn export . cryptsetup-${SVN_VERSION}
|
|
|
|
tar --owner=root --group=root --force-local -cjf cryptsetup-${SVN_VERSION}.tar.bz2 cryptsetup-${SVN_VERSION}
|
|
|
|
rm -rf cryptsetup-${SVN_VERSION}
|