diff options
author | Peter Scheibel <scheibel1@llnl.gov> | 2016-01-19 17:27:18 -0800 |
---|---|---|
committer | Peter Scheibel <scheibel1@llnl.gov> | 2016-01-19 17:27:18 -0800 |
commit | 965af75d23b356b44918f815b0e7ef14bdedcba3 (patch) | |
tree | bef1b0dea7314aef95982fe2f1811768d812aaac /var/spack/repos/builtin/packages/tcl/package.py | |
parent | d22cf1aed1d033610481cb451909c93916848ccc (diff) | |
parent | 9be37da077158c43eb0c2f6b190773772dfa9ef5 (diff) | |
download | spack-965af75d23b356b44918f815b0e7ef14bdedcba3.tar.gz spack-965af75d23b356b44918f815b0e7ef14bdedcba3.tar.bz2 spack-965af75d23b356b44918f815b0e7ef14bdedcba3.tar.xz spack-965af75d23b356b44918f815b0e7ef14bdedcba3.zip |
Merge branch 'develop' into features/boost-additive-libs
Diffstat (limited to 'var/spack/repos/builtin/packages/tcl/package.py')
-rw-r--r-- | var/spack/repos/builtin/packages/tcl/package.py | 22 |
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") |