pyenv-virtualenv v20140421

Closes Homebrew/homebrew#28568.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
master
Xu Cheng 2014-04-21 19:33:21 +08:00 committed by Jack Nagel
parent afe33b568d
commit cc4a885a7f
1 changed files with 7 additions and 7 deletions

View File

@ -1,16 +1,16 @@
require 'formula'
require "formula"
class PyenvVirtualenv < Formula
homepage 'https://github.com/yyuu/pyenv-virtualenv'
url 'https://github.com/yyuu/pyenv-virtualenv/archive/v20140123.tar.gz'
sha1 '157571744ba1a16c44a83e8a250b3bf47ac53ab3'
homepage "https://github.com/yyuu/pyenv-virtualenv"
url "https://github.com/yyuu/pyenv-virtualenv/archive/v20140421.tar.gz"
sha1 "65a82ec70a1de8995d4238fd23becd152e25bdcf"
head 'https://github.com/yyuu/pyenv-virtualenv.git'
head "https://github.com/yyuu/pyenv-virtualenv.git"
depends_on 'pyenv'
depends_on "pyenv"
def install
ENV['PREFIX'] = prefix
ENV["PREFIX"] = prefix
system "./install.sh"
end
end