Kaynağa Gözat

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
Karl DeBisschop 23 yıl önce
ebeveyn
işleme
0723ed267b
2 değiştirilmiş dosya ile 0 ekleme ve 48 silme
  1. 0 26
      make-tarball
  2. 0 22
      rpm

+ 0 - 26
make-tarball

@@ -1,26 +0,0 @@
-#! /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

+ 0 - 22
rpm

@@ -1,22 +0,0 @@
-#!/bin/sh
-
-rpm --showrc | grep macrofiles | sed 's/$/:\.\/rpmmacros/' > rpmrc
-echo %_sourcedir $PWD/SOURCES > rpmmacros
-echo %_rpmdir $PWD/RPMS >> rpmmacros
-echo %_srcrpmdir $PWD/SRPMS >> rpmmacros
-echo >> rpmmacros
-
-if test -f $HOME/.rpmrc; then
-	mv $HOME/.rpmrc $HOME/.rpmrcsave
-	cat $HOME/.rpmrcsave ./rpmrc > $HOME/.rpmrc
-else
-	cat ./rpmrc > $HOME/.rpmrc
-fi
-
-rpm $@
-
-if test -f $HOME/.rpmrcsave; then
-	mv $HOME/.rpmrcsave $HOME/.rpmrc
-else
-	rm $HOME/.rpmrc
-fi