d026add800
OBS-URL: https://build.opensuse.org/package/show/security/cryptsetup?expand=0&rev=f06be568b6570bf4bb8aa2063ca36290
9 lines
329 B
Bash
9 lines
329 B
Bash
#!/bin/sh
|
|
# repo is at http://cryptsetup.googlecode.com/svn/trunk
|
|
set -e -x
|
|
SVN_VERSION="1.0.7_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}
|