2012-02-13 18:26:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Autoenv < Formula
|
|
|
|
homepage 'https://github.com/kennethreitz/autoenv'
|
2013-03-29 01:03:20 +00:00
|
|
|
url 'https://github.com/kennethreitz/autoenv/archive/v0.1.0.tar.gz'
|
|
|
|
sha1 '4d773ba8162b8f49abdfc07d0f8c956aa3353e0c'
|
2012-02-13 18:26:44 +00:00
|
|
|
|
2014-12-03 22:44:40 +00:00
|
|
|
head 'https://github.com/kennethreitz/autoenv.git'
|
2012-02-13 18:26:44 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
prefix.install "activate.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
def caveats; <<-EOS.undent
|
2013-06-02 18:23:39 +00:00
|
|
|
To finish the installation, source activate.sh in your shell:
|
|
|
|
source #{opt_prefix}/activate.sh
|
2012-02-13 18:26:44 +00:00
|
|
|
EOS
|
|
|
|
end
|
|
|
|
end
|