diff options
author | Ethan Galstad <egalstad@users.sourceforge.net> | 2002-02-28 06:42:51 (GMT) |
---|---|---|
committer | Ethan Galstad <egalstad@users.sourceforge.net> | 2002-02-28 06:42:51 (GMT) |
commit | 44a321cb8a42d6c0ea2d96a1086a17f2134c89cc (patch) | |
tree | a1a4d9f7b92412a17ab08f34f04eec45433048b7 /make-tarball | |
parent | 54fd5d7022ff2d6a59bc52b8869182f3fc77a058 (diff) | |
download | monitoring-plugins-44a321cb8a42d6c0ea2d96a1086a17f2134c89cc.tar.gz |
Initial revision
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'make-tarball')
-rwxr-xr-x | make-tarball | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/make-tarball b/make-tarball new file mode 100755 index 0000000..1695c8c --- /dev/null +++ b/make-tarball | |||
@@ -0,0 +1,26 @@ | |||
1 | #! /bin/sh | ||
2 | if [ "x$1" = "x" ] | ||
3 | then | ||
4 | echo "Usage: $0 <release number>" | ||
5 | exit 1 | ||
6 | fi | ||
7 | |||
8 | autoconf | ||
9 | if test -e Makefile; then | ||
10 | make devclean | ||
11 | fi | ||
12 | |||
13 | PWDSAVE=`pwd` | ||
14 | PACKAGE=`basename $PWDSAVE` | ||
15 | pushd .. | ||
16 | ln -s $PACKAGE $PACKAGE-$1 | ||
17 | tar zhcvf $PWDSAVE/SOURCES/$PACKAGE-$1.tar.gz --exclude RCS --exclude CVS --exclude SOURCES --exclude RPMS --exclude SRPMS --exclude redhat --exclude debian --exclude solaris --exclude sparc64 --exclude rpmrc --exclude rpmmacros --exclude *~ --exclude .#* $PACKAGE-$1 | ||
18 | rm $PACKAGE-$1 | ||
19 | popd | ||
20 | |||
21 | gzip -cd SOURCES/$PACKAGE-$1.tar.gz | bzip2 -c9 > SOURCES/$PACKAGE-$1.tar.bz2 | ||
22 | |||
23 | if md5sum --help >/dev/null; then | ||
24 | md5sum ./SOURCES/$PACKAGE-$1.tar.gz > ./SOURCES/$PACKAGE-$1.tar.gz.md5 | ||
25 | md5sum ./SOURCES/$PACKAGE-$1.tar.bz2 > ./SOURCES/$PACKAGE-$1.tar.bz2.md5 | ||
26 | fi | ||