From eb6ba914dbd12dcc4a7e6d68e7bde478eaf144d5 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Thu, 27 Sep 2012 17:26:27 +0000 Subject: [PATCH] Remove from here since it has moved to the homepage/RELEASE directory. git-svn-id: https://svn.dealii.org/trunk@26800 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/common/scripts/make_tarfile.sh | 34 -------------------------- 1 file changed, 34 deletions(-) delete mode 100755 deal.II/common/scripts/make_tarfile.sh diff --git a/deal.II/common/scripts/make_tarfile.sh b/deal.II/common/scripts/make_tarfile.sh deleted file mode 100755 index 8b8befd04e..0000000000 --- a/deal.II/common/scripts/make_tarfile.sh +++ /dev/null @@ -1,34 +0,0 @@ -###################################################################### -# creates both tar files (source and documentation). call this script -# in an otherwise empty directory as follows: -# -# bash make_tarfile.sh 6 0 0 -# -# to generate the tar files for release 6.0.0 -# -###################################################################### - -MAJOR=$1 -MINOR=$2 -PATCH=$3 - -svn export http://www.dealii.org/svn/dealii/tags/Version-$MAJOR-$MINOR-$PATCH/deal.II - -# Generate distribution tarfile - -tar czf deal.II-$MAJOR.$MINOR.$PATCH.tar.gz deal.II - -# Generate stripped tarfile - -mv deal.II/doc deal.II/examples . -tar czf deal.nodoc-$MAJOR.$MINOR.$PATCH.tar.gz deal.II -mv doc examples deal.II - -# Generate documentation - -cd deal.II -./configure --with-umfpack --without-petsc --without-trilinos -make online-doc -cd .. -tar czf deal.doc-$MAJOR.$MINOR.$PATCH.tar.gz deal.II/doc - -- 2.39.5