aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/oniguruma.rb
blob: 491fc1c501d844d4e191333f5a04c389b3797b10 (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.3.tar.gz'
  sha1 '235e0ec46582e4dbd12c44aeba97d1219aed6702'

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