adding a zsh package

This commit is contained in:
Tom Scogland 2015-07-22 11:35:51 -07:00
parent 19123b4c48
commit 6ad5210216

View File

@ -0,0 +1,16 @@
from spack import *
class Zsh(Package):
""" The ZSH shell """
homepage = "http://www.zsh.org"
url = "http://www.zsh.org/pub/zsh-5.0.8.tar.bz2"
version('5.0.8', 'e6759e8dd7b714d624feffd0a73ba0fe')
depends_on("pcre")
def install(self, spec, prefix):
configure('--prefix=%s' % prefix)
make()
make("install")