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