Skip to content

julien-montmartin/statcl

Repository files navigation

Statcl

A μ Tcl/Tk distribution statically linked to put in an AppImage.

Build Status

Sources are compiled by Travis CI on Ubuntu Trusty (14.04), according to AppImage recommendations. The files of this repository are released under the BSD-3-Clause license. Individual packages of Statcl are also released under BSD-type license:

Feel free to go to the release tab of this repo, and download the latest AppImage of the Wish demo. You may also want to check my disk free demo for an easy example of a working AppImage based on Statcl.

A screenshot of Wish demo

This kind of sh script may help you to download the latest release of Statcl from this repo:

getStatcl() {

	curlTxt=https://raw.githubusercontent.com/julien-montmartin/statcl/master/curl.txt
	curl -s ${curlTxt} | curl -sLK -
	ls -lh statcl-*
}