source: git/make_tar.sh @ 2524e4

spielwiese
Last change on this file since 2524e4 was 2524e4, checked in by Hans Schoenemann <hannes@…>, 8 years ago
version 4-0-3 for url
  • Property mode set to 100644
File size: 1.5 KB
RevLine 
[724581c]1#!/bin/sh
[978443]2VERSION=4.0.3
[724581c]3export VERSION
4
5git archive --prefix=singular-$VERSION/ HEAD |tar xf -
6mkdir singular-$VERSION/doc
7cp doc/*.man singular-$VERSION/doc/.
[2524e4]8cp doc/singular.idx singular-$VERSION/doc/.
[d336ee3]9if test -e doc/doc.tbz2
[fe8ff2]10then
[d336ee3]11  cp doc/doc.tbz2 singular-$VERSION/doc/.
[fe8ff2]12fi
13
[6b08c9e]14command rm singular-$VERSION/.gdbinit singular-$VERSION/*/.gdbinit singular-$VERSION/*/*/.gdbinit singular-$VERSION/*/*/*/.gdbinit
[1a1f34b]15command rm singular-$VERSION/IntegerProgramming/README
[fd1c508]16command rm -rf singular-$VERSION/modules
[1b9fe1]17command rm -rf singular-$VERSION/factory/old
[6b08c9e]18cd singular-$VERSION
19./autogen.sh
20cd ..
[1a1f34b]21command rm -rf singular-$VERSION/autom4te.cache
22command rm -rf singular-$VERSION/*/autom4te.cache
23command rm -rf singular-$VERSION/*/*/autom4te.cache
24command rm -rf singular-$VERSION/omalloc/Misc
25command rm -rf singular-$VERSION/Singular/LIB/surfex
26command rm -rf singular-$VERSION/Singular/cnf2ideal.py
27command rm -rf singular-$VERSION/kernel/old singular-$VERSION/kernel/sample
28command rm -rf singular-$VERSION/dox/Doxyfile.html.all singular-$VERSION/dox/Doxyfile.in1 singular-$VERSION/dox/Doxyfile.latex.short singular-$VERSION/dox/readme
29command rm singular-$VERSION/factory/ConwayList.txt
30command rm -rf singular-$VERSION/logo  singular-$VERSION/standalone.test  singular-$VERSION/templates  singular-$VERSION/tests
[1550e4d]31cp redhat/singular.spec singular-$VERSION/redhat/singular.spec
[978443]32cp /tmp/wawa-i/share/singular/LIB/all.lib  singular-$VERSION/Singular/LIB/.
[724581c]33tar cf singular-$VERSION.tar singular-$VERSION
34gzip -9 -f singular-$VERSION.tar
35command rm -rf singular-$VERSION
Note: See TracBrowser for help on using the repository browser.