2012-02-13 18:26:44 +00:00
|
|
|
class Autoenv < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Per-project, per-directory shell environments"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://github.com/kennethreitz/autoenv"
|
|
|
|
url "https://github.com/kennethreitz/autoenv/archive/v0.1.0.tar.gz"
|
|
|
|
sha256 "5e0fb3af642ee54b050b9d04f7f32fef1c6db14a6a3b6c6d05796b5681aeec90"
|
|
|
|
head "https://github.com/kennethreitz/autoenv.git"
|
2012-02-13 18:26:44 +00:00
|
|
|
|
2015-10-23 08:28:38 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
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
|