aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorXu Cheng2014-04-21 20:06:40 +0800
committerAdam Vandenberg2014-05-02 08:17:03 -0700
commitfa066bb9e774539b8a961adaef4deba84e77806b (patch)
treea201263eb61a15120d6aaec353e9c0ecb0caf1d1 /Library
parent832edb36602020e55ddaf94457e4b0d0fd8ef26a (diff)
downloadhomebrew-fa066bb9e774539b8a961adaef4deba84e77806b.tar.bz2
pyenv-which-ext 0.0.2
Closes #28571. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/pyenv-which-ext.rb16
1 files changed, 16 insertions, 0 deletions
diff --git a/Library/Formula/pyenv-which-ext.rb b/Library/Formula/pyenv-which-ext.rb
new file mode 100644
index 000000000..dac4bd6cb
--- /dev/null
+++ b/Library/Formula/pyenv-which-ext.rb
@@ -0,0 +1,16 @@
+require "formula"
+
+class PyenvWhichExt < Formula
+ homepage "https://github.com/yyuu/pyenv-which-ext"
+ url "https://github.com/yyuu/pyenv-which-ext/archive/v0.0.2.tar.gz"
+ sha1 "72d2d3a80d6d9226276dfb897d12f7be69a12f0a"
+
+ head "https://github.com/yyuu/pyenv-which-ext.git"
+
+ depends_on "pyenv"
+
+ def install
+ ENV["PREFIX"] = prefix
+ system "./install.sh"
+ end
+end