Tk-8.6.8-GCCcore-13.3.0.eb 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. easyblock = 'ConfigureMake'
  2. name = 'Tk'
  3. version = '8.6.8'
  4. homepage = 'http://www.tcl.tk/'
  5. description = """Tk is an open source, cross-platform widget toolchain that provides a library of basic elements for
  6. building a graphical user interface (GUI) in many different programming languages."""
  7. toolchain = {'name': 'GCCcore', 'version': '13.3.0'}
  8. source_urls = ["http://prdownloads.sourceforge.net/tcl"]
  9. sources = ['%(namelower)s%(version)s-src.tar.gz']
  10. patches = ['Tk-8.6.4_different-prefix-with-tcl.patch']
  11. checksums = [
  12. '49e7bca08dde95195a27f594f7c850b088be357a7c7096e44e1158c7a5fd7b33', # tk8.6.8-src.tar.gz
  13. '7a6daa8349393af3d340e774aebf07c7410c51e01bc654ceb3679877063b961d', # Tk-8.6.4_different-prefix-with-tcl.patch
  14. ]
  15. builddependencies = [('binutils', '2.42')]
  16. dependencies = [
  17. ('Tcl', version),
  18. ('X11', '20180604'),
  19. ('zlib', '1.3.1'),
  20. ]
  21. configopts = '--enable-threads --with-tcl=$EBROOTTCL/lib CFLAGS="-I$EBROOTTCL/include"'
  22. installopts = "&& make install-private-headers"
  23. postinstallcmds = ["ln -s wish%(version_major_minor)s %(installdir)s/bin/wish"]
  24. sanity_check_paths = {
  25. 'files': ["bin/wish", "lib/tkConfig.sh", "include/tkInt.h"],
  26. 'dirs': [],
  27. }
  28. start_dir = 'unix'
  29. moduleclass = 'vis'