2014-03-04 09:17:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class PyenvVirtualenvwrapper < Formula
|
|
|
|
homepage 'https://github.com/yyuu/pyenv-virtualenvwrapper'
|
2014-03-20 16:26:27 +00:00
|
|
|
url 'https://github.com/yyuu/pyenv-virtualenvwrapper/archive/v20140321.tar.gz'
|
|
|
|
sha1 '964b6a52f4c097effd03a5c3005a42dfbb413508'
|
2014-03-04 09:17:29 +00:00
|
|
|
|
|
|
|
head 'https://github.com/yyuu/pyenv-virtualenvwrapper.git'
|
|
|
|
|
|
|
|
depends_on 'pyenv'
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['PREFIX'] = prefix
|
|
|
|
system "./install.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "eval \"$(pyenv init -)\" && pyenv virtualenvwrapper"
|
|
|
|
end
|
|
|
|
end
|