mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-03-02 21:31:22 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@2 f882894a-f735-0410-b71e-b25c423dba1c
26 lines
766 B
Bash
Executable file
26 lines
766 B
Bash
Executable file
#! /bin/sh
|
|
if [ "x$1" = "x" ]
|
|
then
|
|
echo "Usage: $0 <release number>"
|
|
exit 1
|
|
fi
|
|
|
|
autoconf
|
|
if test -e Makefile; then
|
|
make devclean
|
|
fi
|
|
|
|
PWDSAVE=`pwd`
|
|
PACKAGE=`basename $PWDSAVE`
|
|
pushd ..
|
|
ln -s $PACKAGE $PACKAGE-$1
|
|
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
|
|
rm $PACKAGE-$1
|
|
popd
|
|
|
|
gzip -cd SOURCES/$PACKAGE-$1.tar.gz | bzip2 -c9 > SOURCES/$PACKAGE-$1.tar.bz2
|
|
|
|
if md5sum --help >/dev/null; then
|
|
md5sum ./SOURCES/$PACKAGE-$1.tar.gz > ./SOURCES/$PACKAGE-$1.tar.gz.md5
|
|
md5sum ./SOURCES/$PACKAGE-$1.tar.bz2 > ./SOURCES/$PACKAGE-$1.tar.bz2.md5
|
|
fi
|