9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Load common functions
source ../common.sh
# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'
# Only build for the following platforms
#only_platforms_regexp '-ix86$'
# Download source
download_src
# Extract package
(
rm -rf build
mkdir build
|
<
<
<
|
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Load common functions
source ../common.sh
# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'
# Download source
download_src
# Extract package
(
rm -rf build
mkdir build
|