diff options
author | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 01:37:59 -0700 |
---|---|---|
committer | Todd Gamblin <tgamblin@llnl.gov> | 2015-09-23 01:37:59 -0700 |
commit | 6d4eed38457444d9b2b2b29b43d4c38c2fbb11d6 (patch) | |
tree | 2a3d591d2bfd4ae3c97ba2240477223489496097 | |
parent | 82ea7aec5125a7b5693aa9a0a157b58384e48b39 (diff) | |
parent | b06117f77a71a5c82a07b2ff063c30cb9a9a25c3 (diff) | |
download | spack-6d4eed38457444d9b2b2b29b43d4c38c2fbb11d6.tar.gz spack-6d4eed38457444d9b2b2b29b43d4c38c2fbb11d6.tar.bz2 spack-6d4eed38457444d9b2b2b29b43d4c38c2fbb11d6.tar.xz spack-6d4eed38457444d9b2b2b29b43d4c38c2fbb11d6.zip |
Merge pull request #102 from RasmusWL/features/fish
Add fish (shell) package
-rw-r--r-- | var/spack/packages/fish/package.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/packages/fish/package.py b/var/spack/packages/fish/package.py new file mode 100644 index 0000000000..1225558705 --- /dev/null +++ b/var/spack/packages/fish/package.py @@ -0,0 +1,18 @@ +from spack import * + +class Fish(Package): + """fish is a smart and user-friendly command line shell for OS X, Linux, and + the rest of the family. + """ + + homepage = "http://fishshell.com/" + url = "http://fishshell.com/files/2.2.0/fish-2.2.0.tar.gz" + list_url = homepage + + version('2.2.0', 'a76339fd14ce2ec229283c53e805faac48c3e99d9e3ede9d82c0554acfc7b77a') + + def install(self, spec, prefix): + configure('--prefix=%s' % prefix) + + make() + make("install") |