Posted to tcl by oldlaptop at Wed Apr 15 03:43:18 GMT 2020view raw

  1. ADDED critcl/build.sh
  2. Index: critcl/build.sh
  3. ==================================================================
  4. --- critcl/build.sh
  5. +++ critcl/build.sh
  6. @@ -0,0 +1,21 @@
  7. +#! /usr/bin/env bash
  8. +
  9. +# BuildCompatible: KitCreator
  10. +
  11. +version='3.1.18.1'
  12. +url="http://github.com/andreas-kupries/critcl/tarball/${version}/critcl-${version}.tar.gz"
  13. +sha256='c26893bda46dfda332d2e7d7410ae998eafda697169ea25b4256295d293089de'
  14. +
  15. +function configure() {
  16. + :
  17. +}
  18. +
  19. +function build() {
  20. + :
  21. +}
  22. +
  23. +function install() {
  24. + mkdir -p "${installdir}/lib" || return 1
  25. +
  26. + ${TCLSH_NATIVE} ./build.tcl install "${installdir}/lib"
  27. +}
  28.  
  29.