9050dbee42
Closes Homebrew/homebrew#26466. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
24 lines
575 B
Ruby
24 lines
575 B
Ruby
require 'formula'
|
|
|
|
class Direnv < Formula
|
|
homepage 'http://www.direnv.net'
|
|
url 'https://github.com/zimbatm/direnv/archive/v2.3.0.tar.gz'
|
|
sha1 '761b1705cd9925d36534050c4a586bb5607eb87f'
|
|
|
|
head 'https://github.com/zimbatm/direnv.git'
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
system "make", "install", "DESTDIR=#{prefix}"
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
At the END of your ~/.bashrc or ~/.zshrc, add the following line:
|
|
eval "$(direnv hook $0)"
|
|
|
|
See the wiki for docs and examples:
|
|
https://github.com/zimbatm/direnv/wiki/
|
|
EOS
|
|
end
|
|
end
|