aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/oniguruma.rb
blob: 625b8b0d4ddce985e1f5aee73183010e4107d86a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Oniguruma < Formula
  homepage "http://www.geocities.jp/kosako3/oniguruma/"
  url "http://www.geocities.jp/kosako3/oniguruma/archive/onig-5.9.6.tar.gz"
  sha1 "08d2d7b64b15cbd024b089f0924037f329bc7246"

  bottle do
    cellar :any
    sha1 "12f394ce6f8694efa03d1a7ce2d18fc9a069a75c" => :yosemite
    sha1 "5243422d56451c96768528739932c5651e7a10d7" => :mavericks
    sha1 "62ca1e24ca20cecb83b8cbeeaf1335b94faffe4b" => :mountain_lion
  end

  def install
    system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make", "install"
  end
end