homebrew-core/Formula/autoenv.rb
Janne Heß 964b083f84 autoenv 0.2.1
A new autoenv release! (minor)

Closes #6054.

Signed-off-by: Andrew Janke <andrew@apjanke.net>
2016-10-20 23:53:23 -04:00

19 lines
558 B
Ruby

class Autoenv < Formula
desc "Per-project, per-directory shell environments"
homepage "https://github.com/kennethreitz/autoenv"
url "https://github.com/kennethreitz/autoenv/archive/v0.2.1.tar.gz"
sha256 "d10ee4d916a11a664453e60864294fec221c353f8ad798aa0aa6a2d2c5d5b318"
head "https://github.com/kennethreitz/autoenv.git"
bottle :unneeded
def install
prefix.install "activate.sh"
end
def caveats; <<-EOS.undent
To finish the installation, source activate.sh in your shell:
source #{opt_prefix}/activate.sh
EOS
end
end