1
2
3
4
5
6
7
8
9
10
11
|
#! /bin/bash
# Define parameters
VERS=8.0.2793
SRC="src/ctk-${VERS}.tar.gz"
SRCURL="http://www.rkeene.org/devel/ctk/ctk-${VERS}.tar.gz"
BUILDDIR="ctk-${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=8.0.2801
SRC="src/ctk-${VERS}.tar.gz"
SRCURL="http://www.rkeene.org/devel/ctk/ctk-${VERS}.tar.gz"
BUILDDIR="ctk-${VERS}"
export VERS SRC SRCURL BUILDDIR
# Load common functions
source ../common.sh
|