homebrew-core/Formula/pyenv-pip-rehash.rb
Yamashita Yuu afc21964a3 pyenv-pip-rehash 0.0.4
Closes Homebrew/homebrew#27990.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2014-03-30 09:59:57 -05:00

20 lines
443 B
Ruby

require 'formula'
class PyenvPipRehash < Formula
homepage 'https://github.com/yyuu/pyenv-pip-rehash'
url 'https://github.com/yyuu/pyenv-pip-rehash/archive/v0.0.4.tar.gz'
sha1 'afbce380b888c987138f28d33fe1ba5a38cdb41a'
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