forked from pool/cryptsetup
9 lines
327 B
Bash
9 lines
327 B
Bash
#!/bin/sh
|
|
# repo is at http://luks.endorphin.org/svn/cryptsetup
|
|
set -e -x
|
|
SVN_VERSION="1.0.5_SVNr`svnversion .`"
|
|
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}
|