source: git/make_tar.sh @ 1b9fe1

spielwiese
Last change on this file since 1b9fe1 was 1b9fe1, checked in by Hans Schoenemann <hannes@…>, 9 years ago
tests for tr. #393
  • Property mode set to 100644
File size: 682 bytes
RevLine 
[724581c]1#!/bin/sh
2VERSION=4.0.2p1
3export VERSION
4
5git archive --prefix=singular-$VERSION/ HEAD |tar xf -
6mkdir singular-$VERSION/doc
7cp doc/*.man singular-$VERSION/doc/.
[6b08c9e]8command rm singular-$VERSION/.gdbinit singular-$VERSION/*/.gdbinit singular-$VERSION/*/*/.gdbinit singular-$VERSION/*/*/*/.gdbinit
[fd1c508]9command rm -rf singular-$VERSION/modules
[1b9fe1]10command rm -rf singular-$VERSION/factory/old
11command rm -rf singular-$VERSION/autom4te.cache
12command rm -rf singular-$VERSION/*/autom4te.cache
13command rm -rf singular-$VERSION/*/*/autom4te.cache
[6b08c9e]14cd singular-$VERSION
15./autogen.sh
16cd ..
[724581c]17tar cf singular-$VERSION.tar singular-$VERSION
18gzip -9 -f singular-$VERSION.tar
19command rm -rf singular-$VERSION
Note: See TracBrowser for help on using the repository browser.