Skip to content

Commit

Permalink
Add fetch script for TclTk 9
Browse files Browse the repository at this point in the history
  • Loading branch information
culler committed Nov 26, 2024
1 parent 3aa9b48 commit d36f12c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions ci/windows/fetch_tcltk9.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
#!/usr/bin/bash
set -e
TCL9_VERSION=9.0.0
TK9_VERSION=9.0.0
WGET="/c/msys64/usr/bin/wget -nv"
CMD=/c/msys64/usr/bin/cmd
if [ ! -e tcl$TCL9_VERSION-src.tar.gz ] ; then
$WGET https://prdownloads.sourceforge.net/tcl/tcl$TCL9_VERSION-src.tar.gz
fi
if [ ! -e tk$TK9_VERSION-src.tar.gz ]; then
$WGET https://prdownloads.sourceforge.net/tcl/tk$TCL9_VERSION-src.tar.gz
fi
rm -rf tcl9 tk9
tar xfz tcl$TCL9_VERSION-src.tar.gz
mv tcl$TCL9_VERSION tcl9
tar xfz tk$TCL9_VERSION-src.tar.gz
mv tk$TCL9_VERSION tk9

0 comments on commit d36f12c

Please sign in to comment.