Skip to content

Commit

Permalink
Merge pull request #102 from RasmusWL/features/fish
Browse files Browse the repository at this point in the history
Add fish (shell) package
  • Loading branch information
tgamblin committed Sep 23, 2015
2 parents 82ea7ae + b06117f commit 6d4eed3
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions var/spack/packages/fish/package.py
Original file line number Diff line number Diff line change
@@ -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")

0 comments on commit 6d4eed3

Please sign in to comment.