10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# 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$' '-x86_64$'
# Download source
download_src
# Extract package
(
rm -rf build
|
|
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# 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
|