aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/re2.rb
blob: 825666ebc835c28779d6adfded6888b857c95f46 (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-20131024.tgz'
  sha1 '90a356fb205c5004cc4f08e45e02994b898b592a'

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