10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Load common functions
source ../common.sh
# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'
# Requires Tcl 8.5 or newer
setup_tcl 8.5 8.6 || exit 1
# Download source
download_src
# Extract package
|
>
>
>
|
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Load common functions
source ../common.sh
# Do not build if the "tcl" platform has been requested
not_platforms 'tcl'
# Do not support multiarch builds
not_platforms_regexp '^macosx.*i386-x86_64' '^macosx.*x86_64-i386'
# Requires Tcl 8.5 or newer
setup_tcl 8.5 8.6 || exit 1
# Download source
download_src
# Extract package
|