Changeset 2570f08 in git


Ignore:
Timestamp:
Jul 7, 2020, 12:51:55 PM (3 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
249d818e57a3c49f4e561e2a5fe38db7dbc9f2c0
Parents:
94479b06ea30b1f20ba9a730ece0083db571e984
Message:
add INSTALL_DIR, BUILD_DIR
File:
1 edited

Legend:

Unmodified
Added
Removed
  • make_tar.sh

    r94479b r2570f08  
    11#!/bin/sh
     2# Hannes helper to build tar files for the ftp server:
     3# to be called: bash make_tar.sh
     4
    25TARVERSION=4.1.3p2
    36VERSION=4.1.3
    4 export VERSION TARVERSION
     7INSTALL_DIT=/tmp2/wawa-i
     8BUILD_DIR=/tmp2/wawa
     9export VERSION TARVERSION INSTALL_DIR BUILD_DIR
    510
    611git archive --prefix=singular-$VERSION/ HEAD |tar xf -
     
    3035command rm singular-$VERSION/factory/ConwayList.txt
    3136command rm -rf singular-$VERSION/logo  singular-$VERSION/standalone.test  singular-$VERSION/templates  singular-$VERSION/tests
    32 cp redhat/singular.spec singular-$VERSION/redhat/singular.spec
    33 cp /tmp2/wawa-i/share/singular/LIB/all.lib  singular-$VERSION/Singular/LIB/.
     37cp $BUILD_DIR/redhat/singular.spec singular-$VERSION/redhat/singular.spec
     38cp $INSTALL_DIR/share/singular/LIB/all.lib  singular-$VERSION/Singular/LIB/.
    3439tar cf singular-$TARVERSION.tar singular-$VERSION
    3540gzip -9 -f singular-$TARVERSION.tar
Note: See TracChangeset for help on using the changeset viewer.