require 'formula' class Direnv < Formula homepage 'http://www.direnv.net' url 'https://github.com/zimbatm/direnv/tarball/v0.1.151' sha1 '8f78b8ee408bd54584171973aa7da898991e6779' head 'https://github.com/zimbatm/direnv.git' 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