2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2017-03-29 10:36:39 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +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"
|
|
|
|
|
2019-10-02 11:34:14 +08:00
|
|
|
version('2.20.0', '75a166c2ef83a3b8dfbd0544cadb5984')
|
2017-03-29 10:36:39 +08:00
|
|
|
version('2.11.3', '5b9728e2dabed232b4932849647fd6e5')
|
|
|
|
|
|
|
|
depends_on('go', type='build')
|
|
|
|
|
|
|
|
def install(self, spec, prefix):
|
|
|
|
make('install', "DESTDIR=%s" % prefix)
|