pyenv-which-ext 0.0.2

Closes Homebrew/homebrew#28571.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Xu Cheng 2014-04-21 20:06:40 +08:00 committed by Adam Vandenberg
parent 9639a3d1fb
commit 0f9f0ad4be
1 changed files with 16 additions and 0 deletions

View File

@ -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