forked from pool/cryptsetup
9 lines
348 B
Plaintext
9 lines
348 B
Plaintext
|
#!/bin/sh
|
||
|
# repo is at http://luks.endorphin.org/svn/cryptsetup
|
||
|
set -e
|
||
|
SVN_VERSION="1.0.4_SVN`svnversion .`"
|
||
|
rm -rf cryptsetup-luks-${SVN_VERSION}
|
||
|
svn export . cryptsetup-luks-${SVN_VERSION}
|
||
|
tar --owner=root --group=root --force-local -cjf cryptsetup-luks-${SVN_VERSION}.tar.bz2 cryptsetup-luks-${SVN_VERSION}
|
||
|
rm -rf cryptsetup-luks-${SVN_VERSION}
|