2012-02-13 18:26:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Autoenv < Formula
|
|
|
|
homepage 'https://github.com/kennethreitz/autoenv'
|
2012-02-19 16:04:03 +00:00
|
|
|
url 'https://github.com/kennethreitz/autoenv/tarball/v0.1.0'
|
|
|
|
md5 '5ced296136a2e97d92de247a6fbc5f77'
|
2012-02-13 18:26:44 +00:00
|
|
|
|
|
|
|
head 'https://github.com/kennethreitz/autoenv.git', :branch => 'master'
|
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install "activate.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
Autoenv was installed to:
|
|
|
|
#{prefix}
|
|
|
|
|
|
|
|
To finish the installation, source activate.sh in your shell:
|
|
|
|
source #{prefix}/activate.sh
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|