aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/re2.rb
blob: b3e8f02d984e85f958c4bcd6c8af68f27c50f358 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Re2 < Formula
  homepage 'https://code.google.com/p/re2/'
  head 'https://re2.googlecode.com/hg'
  url 'https://re2.googlecode.com/files/re2-20130802.tgz'
  sha1 'c2cf57ecd63b754da3021212198c517540276572'

  def install
    system "make", "install", "prefix=#{prefix}"
  end
end