aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorKenneth Reitz2012-02-13 13:26:44 -0500
committerAdam Vandenberg2012-02-14 19:32:08 -0800
commit6f732a02f2791a4e8235beb8f627fda0b46e609c (patch)
tree430961e1ec600395663fd2ca6fdb3ff8e1715cca /Library
parenta59b187384c0cd2365a36a51813811a807d8cb06 (diff)
downloadhomebrew-6f732a02f2791a4e8235beb8f627fda0b46e609c.tar.bz2
autoenv 0.0.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/autoenv.rb22
1 files changed, 22 insertions, 0 deletions
diff --git a/Library/Formula/autoenv.rb b/Library/Formula/autoenv.rb
new file mode 100644
index 000000000..f316ee1c6
--- /dev/null
+++ b/Library/Formula/autoenv.rb
@@ -0,0 +1,22 @@
+require 'formula'
+
+class Autoenv < Formula
+ homepage 'https://github.com/kennethreitz/autoenv'
+ url 'https://github.com/kennethreitz/autoenv/tarball/v0.0.1'
+ md5 '92dd44e136946964f6aa72967c4d032b'
+
+ 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