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

class Oniguruma < Formula
  homepage 'http://www.geocities.jp/kosako3/oniguruma/'
  url 'http://www.geocities.jp/kosako3/oniguruma/archive/onig-5.9.5.tar.gz'
  sha1 '804132e1324ef8b940414324c741547d7ecf24e8'

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