2014-02-20 18:52:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class PyenvPipRehash < Formula
|
|
|
|
homepage 'https://github.com/yyuu/pyenv-pip-rehash'
|
2014-03-30 14:18:47 +00:00
|
|
|
url 'https://github.com/yyuu/pyenv-pip-rehash/archive/v0.0.4.tar.gz'
|
|
|
|
sha1 'afbce380b888c987138f28d33fe1ba5a38cdb41a'
|
2014-02-20 18:52:13 +00:00
|
|
|
|
|
|
|
head 'https://github.com/yyuu/pyenv-pip-rehash.git'
|
|
|
|
|
|
|
|
depends_on 'pyenv'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = prefix
|
|
|
|
system "./install.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
%x(pyenv hooks exec).include?('pip.bash')
|
|
|
|
end
|
|
|
|
end
|