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'
|
|
|
|
url 'https://github.com/zimbatm/direnv/tarball/v0.1.109'
|
|
|
|
md5 'a3ddab0323037533be3b942683188742'
|
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
|
|
|
|
|
|
|
def install
|
2011-12-31 21:34:25 +00:00
|
|
|
system "make install DESTDIR=#{prefix}"
|
2011-06-04 19:53:18 +00:00
|
|
|
end
|
2011-09-21 16:19:17 +00:00
|
|
|
|
|
|
|
def caveats
|
|
|
|
<<-EOS.undent
|
|
|
|
One last step.
|
|
|
|
|
|
|
|
At the END of your ~/.bashrc or ~/.zshrc, add the following line:
|
|
|
|
|
|
|
|
eval `direnv hook $0`
|
|
|
|
|
|
|
|
I mean, AFTER rvm, git-prompt and friends :)
|
|
|
|
|
|
|
|
Reload your shell, done.
|
|
|
|
|
|
|
|
See the wiki for docs and examples:
|
|
|
|
https://github.com/zimbatm/direnv/wiki/
|
|
|
|
EOS
|
|
|
|
end
|
2011-06-04 19:53:18 +00:00
|
|
|
end
|