spack/var/spack/repos/builtin/packages/direnv/package.py

21 lines
593 B
Python
Raw Normal View History

# Copyright 2013-2018 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
2017-03-29 10:36:39 +08:00
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
2017-03-29 10:36:39 +08:00
from spack import *
class Direnv(Package):
"""direnv is an environment switcher for the shell."""
homepage = "https://direnv.net/"
url = "https://github.com/direnv/direnv/archive/v2.11.3.tar.gz"
version('2.11.3', '5b9728e2dabed232b4932849647fd6e5')
depends_on('go', type='build')
def install(self, spec, prefix):
make('install', "DESTDIR=%s" % prefix)