1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash
# Define parameters
VERS=0.10
SRC="src/tcc4tcl-${VERS}.tar.gz"
SRCURL="http://rkeene.org/devel/tcc4tcl-${VERS}.tar.gz"
BUILDDIR="tcc4tcl-${VERS}"
export VERS SRC SRCURL BUILDDIR
# Load common functions
source ../common.sh
|
|
|
1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash
# Define parameters
VERS=0.11
SRC="src/tcc4tcl-${VERS}.tar.gz"
SRCURL="http://rkeene.org/devel/tcc4tcl-${VERS}.tar.gz"
BUILDDIR="tcc4tcl-${VERS}"
export VERS SRC SRCURL BUILDDIR
# Load common functions
source ../common.sh
|