homebrew-core/Formula/oniguruma.rb
Andre Arko 1c83671bd6 Oniguruma formula
Oniguruma is a regular expressions library. The characteristics of this
library is that different character encoding for every regular expression
object can be specified.
2009-09-03 13:05:01 +01:00

12 lines
370 B
Ruby

require 'brewkit'
class Oniguruma <Formula
@url='http://www.geocities.jp/kosako3/oniguruma/archive/onig-5.9.1.tar.gz'
@homepage='http://www.geocities.jp/kosako3/oniguruma/'
@md5='5ce5f9bba5e83f0ea6ec24e1ac77091c'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end