aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/oniguruma.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/oniguruma.rb b/Library/Formula/oniguruma.rb
new file mode 100644
index 000000000..103bacc30
--- /dev/null
+++ b/Library/Formula/oniguruma.rb
@@ -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