2011-06-04 19:53:18 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Direnv < Formula
|
2011-12-31 21:34:25 +00:00
|
|
|
homepage 'http://www.direnv.net'
|
2014-06-30 00:44:05 +00:00
|
|
|
url 'https://github.com/zimbatm/direnv/archive/v2.4.0.tar.gz'
|
|
|
|
sha1 '1fc9b77eb60c6d22d16bdb059edc1db0f1228dea'
|
2011-06-04 19:53:18 +00:00
|
|
|
|
2011-06-05 00:18:11 +00:00
|
|
|
head 'https://github.com/zimbatm/direnv.git'
|
2011-06-04 19:53:18 +00:00
|
|
|
|
2013-06-16 12:44:22 +00:00
|
|
|
depends_on "go" => :build
|
|
|
|
|
2011-06-04 19:53:18 +00:00
|
|
|
def install
|
2012-05-15 18:31:21 +00:00
|
|
|
system "make", "install", "DESTDIR=#{prefix}"
|
2011-06-04 19:53:18 +00:00
|
|
|
end
|
2011-09-21 16:19:17 +00:00
|
|
|
|
2012-02-13 06:19:19 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2011-09-21 16:19:17 +00:00
|
|
|
At the END of your ~/.bashrc or ~/.zshrc, add the following line:
|
2013-03-29 18:17:09 +00:00
|
|
|
eval "$(direnv hook $0)"
|
2011-09-21 16:19:17 +00:00
|
|
|
|
|
|
|
See the wiki for docs and examples:
|
|
|
|
https://github.com/zimbatm/direnv/wiki/
|
|
|
|
EOS
|
|
|
|
end
|
2011-06-04 19:53:18 +00:00
|
|
|
end
|