]> git.sven.stormbind.net Git - sven/tclcurl.git/blobdiff - packages/Windows/SetUp.tcl
Imported Upstream version 7.19.6
[sven/tclcurl.git] / packages / Windows / SetUp.tcl
diff --git a/packages/Windows/SetUp.tcl b/packages/Windows/SetUp.tcl
new file mode 100755 (executable)
index 0000000..f59f10f
--- /dev/null
@@ -0,0 +1,40 @@
+# This script installs TclCurl in a Windows system, you only
+# have to double-click on it and, provided Tcl/Tk is already
+# installed, TclCurl will be ready to use.
+#
+# Copyright (c) 2001-2009 Andres Garcia Garcia.
+#
+# See the file "license.terms" for information on usage and redistribution
+# of this file, and for a DISCLAIMER OF ALL WARRANTIES.
+
+
+wm withdraw .
+
+set tclLibDir     [file dirname $tcl_library]
+set tclBinDir     [file join [file dirname $tclLibDir] bin]
+set windowsSystem [file join $env(windir) SYSTEM]
+
+foreach oldie [glob -nocomplain $tclLibDir/tclcurl*] {
+    catch {file delete -force $oldie}
+}
+
+file copy -force tclcurl7.19.6 $tclLibDir
+
+foreach sslFile [glob -nocomplain ssl/*] {
+    catch {file copy -force $sslFile $windowsSystem}
+}
+foreach sslFile [glob -nocomplain certs/*] {
+    file copy -force $sslFile [file join $env(windir) curl-ca-bundle.crt]
+}
+
+package forget TclCurl
+
+if {[catch {package require TclCurl} version]} {
+    tk_messageBox -icon error -type ok -title Error \
+        -message "Install failed\n$version"
+} else {
+    tk_messageBox -icon info -type ok -title Installed \
+        -message "Version $version installed"
+}
+
+exit