Posted to tcl by oldlaptop at Wed Apr 15 03:43:18 GMT 2020view raw
- ADDED critcl/build.sh
- Index: critcl/build.sh
- ==================================================================
- --- critcl/build.sh
- +++ critcl/build.sh
- @@ -0,0 +1,21 @@
- +#! /usr/bin/env bash
- +
- +# BuildCompatible: KitCreator
- +
- +version='3.1.18.1'
- +url="http://github.com/andreas-kupries/critcl/tarball/${version}/critcl-${version}.tar.gz"
- +sha256='c26893bda46dfda332d2e7d7410ae998eafda697169ea25b4256295d293089de'
- +
- +function configure() {
- + :
- +}
- +
- +function build() {
- + :
- +}
- +
- +function install() {
- + mkdir -p "${installdir}/lib" || return 1
- +
- + ${TCLSH_NATIVE} ./build.tcl install "${installdir}/lib"
- +}