forked from pool/libvmime
aa26830cff
MIME message parser OBS-URL: https://build.opensuse.org/request/show/105595 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/libvmime?expand=0&rev=1
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;
|