diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-09-14 21:06:00 (GMT) |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2002-09-14 21:06:00 (GMT) |
commit | 0723ed267b0d964037fba58ca4cd3f154c2ec363 (patch) | |
tree | 82a0fb829dcf045ff7e5251d57554c425eb4079d /make-tarball | |
parent | dde07305649e4eafcc246f770ff65544415d74ad (diff) | |
download | monitoring-plugins-0723ed267b0d964037fba58ca4cd3f154c2ec363.tar.gz |
automake makes the dist tarball, rpmbuild -ta makes the rpm
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@98 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'make-tarball')
-rwxr-xr-x | make-tarball | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/make-tarball b/make-tarball deleted file mode 100755 index 1695c8c..0000000 --- a/make-tarball +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
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 | ||