summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tcl-itcl/package.py
blob: 0b0d842fe362dc1316c6a539f50bed94da3131c4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# 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