source: git/make_tar.sh @ 6b08c9e

spielwiese
Last change on this file since 6b08c9e was 6b08c9e, checked in by Hans Schoenemann <hannes@…>, 9 years ago
make_tar.sh: call autogemsh to include configure
  • Property mode set to 100644
File size: 487 bytes
Line 
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/.
8command rm singular-$VERSION/.gdbinit singular-$VERSION/*/.gdbinit singular-$VERSION/*/*/.gdbinit singular-$VERSION/*/*/*/.gdbinit
9command rm -rf singular-$VERSION/modules
10cd singular-$VERSION
11./autogen.sh
12cd ..
13tar cf singular-$VERSION.tar singular-$VERSION
14gzip -9 -f singular-$VERSION.tar
15command rm -rf singular-$VERSION
Note: See TracBrowser for help on using the repository browser.