12 lines
295 B
Bash
12 lines
295 B
Bash
|
#!/bin/sh -ex
|
||
|
# Take an SVN snapshot and produce necessary files to ease
|
||
|
# compilation on irresponsibly old systems.
|
||
|
|
||
|
pushd vmime/;
|
||
|
scons autotools;
|
||
|
rm -Rf autom4te.cache;
|
||
|
popd;
|
||
|
find vmime -print0 | sort -z | \
|
||
|
tar -T- --null --no-rec --owner=root --group=root \
|
||
|
-cjf libvmime-0.9.1+.tar.bz2;
|