aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyenv-virtualenv.rb
blob: e8aa787b2275231af0f62229d6150426f2a7eb5a (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/v20140421.tar.gz"
  sha1 "65a82ec70a1de8995d4238fd23becd152e25bdcf"

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

  depends_on "pyenv"

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