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'
|
2012-02-13 06:19:19 +00:00
|
|
|
url 'https://github.com/zimbatm/direnv/tarball/v0.1.127'
|
|
|
|
md5 '0a0f7a2d738b97c8976fe7e28c4e062c'
|
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
|
|
|
|
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:
|
|
|
|
eval `direnv hook $0`
|
|
|
|
|
|
|
|
See the wiki for docs and examples:
|
|
|
|
https://github.com/zimbatm/direnv/wiki/
|
|
|
|
EOS
|
|
|
|
end
|
2011-06-04 19:53:18 +00:00
|
|
|
end
|