aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyenv-virtualenv.rb
blob: da12ffd903fcf69e0f169628296effe655058372 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class PyenvVirtualenv < Formula
  homepage 'https://github.com/yyuu/pyenv-virtualenv'
  url 'https://github.com/yyuu/pyenv-virtualenv/archive/v20140110.1.tar.gz'
  sha1 '56e4823b13e00d17c2d73eb8e0c3e5eddc7e3d51'

  head 'https://github.com/yyuu/pyenv-virtualenv.git'

  depends_on 'pyenv'

  def install
    ENV['PREFIX'] = prefix
    system "./install.sh"
  end
end