
- remove the old LGPL license headers from all files in Spack - add SPDX headers to all files - core and most packages are (Apache-2.0 OR MIT) - a very small number of remaining packages are LGPL-2.1-only
28 lines
938 B
Python
28 lines
938 B
Python
# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
|
#
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
from spack import *
|
|
|
|
|
|
class TclItcl(AutotoolsPackage):
|
|
"""[incr Tcl] is the most widely used O-O system for Tcl. The name is a
|
|
play on C++, and [incr Tcl] provides a similar object model, including
|
|
multiple inheritence and public and private classes and variables."""
|
|
|
|
homepage = "https://sourceforge.net/projects/incrtcl/"
|
|
url = "https://sourceforge.net/projects/incrtcl/files/%5Bincr%20Tcl_Tk%5D-4-source/itcl%204.0.4/itcl4.0.4.tar.gz"
|
|
|
|
version('4.0.4', 'c9c52afdd9435490e2db17c3c6c95ab4')
|
|
|
|
extends('tcl')
|
|
|
|
def configure_args(self):
|
|
args = [
|
|
'--enable-shared',
|
|
'--enable-threads',
|
|
'--with-tcl=' + self.spec['tcl'].tcl_lib_dir,
|
|
]
|
|
return args
|