summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/fish/package.py
diff options
context:
space:
mode:
authorAdam J. Stewart <ajstewart426@gmail.com>2016-01-19 10:07:21 -0600
committerAdam J. Stewart <ajstewart426@gmail.com>2016-01-19 10:07:21 -0600
commit530f8e5b2649a4b186391fc213982e45c83e1578 (patch)
tree37799a9ad2e63483d34f3a7d320a1d5e677f7ba7 /var/spack/repos/builtin/packages/fish/package.py
parent9b3e0255f4e8c1ec02aae2a75a11383ad274507d (diff)
parent01c5b53ba16a95ab77918d30dfa3a63f2ef2707f (diff)
downloadspack-530f8e5b2649a4b186391fc213982e45c83e1578.tar.gz
spack-530f8e5b2649a4b186391fc213982e45c83e1578.tar.bz2
spack-530f8e5b2649a4b186391fc213982e45c83e1578.tar.xz
spack-530f8e5b2649a4b186391fc213982e45c83e1578.zip
Merge branch 'develop' into features/hdf
* develop: (85 commits) Make libxcb compile with gcc 4.9. disable parallel install for glib (found races) disable cairo-trace, which is incompatible with older libiberty.h. Fix LaunchMon on newer gcc versions. Simplify output redirection in spack.util.executable Allow completely empty config files. Update cmake package to use http in all URLs. Fix create, diy, edit, and repo commands to use multiple repos. Add namespace option to find command. Temporary fix: Clang is the default compiler on Mac OS X. Netcdf requires cmake >=2.8.12 Mbedtls depends on cmake Update libtool to 2.4.6 Update Julia to 0.4.3 Make binutils build on OS X Add verbs and psm variants py-matplotlib: depend on freetype py-numpy: make blas/lapack optional dependencies qhull: apply patch to work with libc++'s standard library New package GNU tar ...
Diffstat (limited to 'var/spack/repos/builtin/packages/fish/package.py')
-rw-r--r--var/spack/repos/builtin/packages/fish/package.py18
1 files changed, 18 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/fish/package.py b/var/spack/repos/builtin/packages/fish/package.py
new file mode 100644
index 0000000000..1225558705
--- /dev/null
+++ b/var/spack/repos/builtin/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")