aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJuhani Simola2013-11-30 01:03:23 +0200
committerMisty De Meo2013-12-02 08:30:25 -0800
commitbdb218bf826743f0194a0dd5f56dd7e09c2df03d (patch)
tree4c7f71df0e5f24d7c2490ac134ae842c326395c2
parentc505d94f833bc78c92afb55274c7a87bfec86248 (diff)
downloadhomebrew-bdb218bf826743f0194a0dd5f56dd7e09c2df03d.tar.bz2
malaga 7.12
Malaga, a software package for the development and application of grammars that are used for the analysis of words and sentences of natural languages. Signed-off-by: Misty De Meo <mistydemeo@gmail.com>
-rw-r--r--Library/Formula/malaga.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/Library/Formula/malaga.rb b/Library/Formula/malaga.rb
new file mode 100644
index 000000000..c187c6edc
--- /dev/null
+++ b/Library/Formula/malaga.rb
@@ -0,0 +1,20 @@
+require 'formula'
+
+class Malaga < Formula
+ homepage 'http://home.arcor.de/bjoern-beutel/malaga/'
+ url 'http://home.arcor.de/bjoern-beutel/malaga/malaga-7.12.tgz'
+ sha1 '19d74697575229231c18c83bb7a16b7ee6c31a51'
+
+ depends_on 'pkg-config' => :build
+ depends_on 'glib'
+ depends_on 'gtk+' => :optional
+
+ def install
+ system "./configure", "--disable-debug",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+
+ system "make", "install"
+ end
+
+end