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-11-03 19:38:44 +00:00
|
|
|
url 'https://github.com/zimbatm/direnv/tarball/v0.1.151'
|
|
|
|
sha1 '8f78b8ee408bd54584171973aa7da898991e6779'
|
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
|
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:
|
|
|
|
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
|