summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/tcl/package.py
diff options
context:
space:
mode:
authoralalazo <massimiliano.culpo@googlemail.com>2016-01-28 11:26:01 +0100
committeralalazo <massimiliano.culpo@googlemail.com>2016-01-28 11:26:01 +0100
commite76b722e28eedd94277e5d8ea42beeb5a8d5048e (patch)
tree647b1eb7202d973cadb0bf16bb3797da679cccdd /var/spack/repos/builtin/packages/tcl/package.py
parentbf4231dd4b906f20d522b9df5f2cae2ba6291174 (diff)
parentc2bb00ca2f925c1a8c4b49f7b0a7b22e7c0b43a8 (diff)
downloadspack-e76b722e28eedd94277e5d8ea42beeb5a8d5048e.tar.gz
spack-e76b722e28eedd94277e5d8ea42beeb5a8d5048e.tar.bz2
spack-e76b722e28eedd94277e5d8ea42beeb5a8d5048e.tar.xz
spack-e76b722e28eedd94277e5d8ea42beeb5a8d5048e.zip
Merge branch 'develop' of https://github.com/LLNL/spack into enhancement/os_detection
Diffstat (limited to 'var/spack/repos/builtin/packages/tcl/package.py')
-rw-r--r--var/spack/repos/builtin/packages/tcl/package.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/tcl/package.py b/var/spack/repos/builtin/packages/tcl/package.py
new file mode 100644
index 0000000000..529adf7788
--- /dev/null
+++ b/var/spack/repos/builtin/packages/tcl/package.py
@@ -0,0 +1,22 @@
+from spack import *
+
+class Tcl(Package):
+ """Tcl (Tool Command Language) is a very powerful but easy to
+ learn dynamic programming language, suitable for a very wide
+ range of uses, including web and desktop applications,
+ networking, administration, testing and many more. Open source
+ and business-friendly, Tcl is a mature yet evolving language
+ that is truly cross platform, easily deployed and highly
+ extensible."""
+ homepage = "http://www.tcl.tk"
+
+ version('8.6.3', 'db382feca91754b7f93da16dc4cdad1f',
+ url="http://prdownloads.sourceforge.net/tcl/tcl8.6.3-src.tar.gz")
+
+ depends_on('zlib')
+
+ def install(self, spec, prefix):
+ with working_dir('unix'):
+ configure("--prefix=%s" % prefix)
+ make()
+ make("install")