File: make-tarball

package info (click to toggle)
nagios 2%3A1.4-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 6,620 kB
  • ctags: 3,328
  • sloc: ansic: 56,919; sh: 4,545; makefile: 726; perl: 276
file content (25 lines) | stat: -rwxr-xr-x 461 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#! /bin/sh
if [ "x$1" = "x" ]
then
	echo "Usage: $0 <release number>"
	exit 1
fi

if test -e Makefile; then
  make distclean
fi
autoconf

# Update version number and modification date in code
./update-version $1

PWDSAVE=`pwd`
PACKAGE=nagios
pushd ..
if [ ! -d $PACKAGE-$1 ]; then
  ln -s `basename $PWDSAVE` $PACKAGE-$1
fi
tar zhcvf $PACKAGE-$1.tar.gz --exclude RCS --exclude CVS --exclude build-* --exclude *~ --exclude .\#* $PACKAGE-$1
#rm $PACKAGE-$1
popd