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

class PyenvCcache < Formula
  homepage "https://github.com/yyuu/pyenv-ccache"
  url "https://github.com/yyuu/pyenv-ccache/archive/v0.0.2.tar.gz"
  sha1 "bd68c92315c5aa8e2d596981f0fab31e6c366137"

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

  depends_on "pyenv"

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