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.
This commit is contained in:
Andre Arko 2009-09-02 20:18:24 -07:00 committed by Max Howell
parent 0e35890e98
commit 1c83671bd6

12
Formula/oniguruma.rb Normal file
View file

@ -0,0 +1,12 @@
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