2010-02-05 00:03:28 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Arabica < Formula
|
2010-02-05 00:03:28 +00:00
|
|
|
homepage 'http://www.jezuk.co.uk/cgi-bin/view/arabica'
|
2010-11-10 18:16:28 +00:00
|
|
|
url 'https://github.com/ashb/Arabica/tarball/20100203'
|
2010-02-05 00:03:28 +00:00
|
|
|
md5 '9318c4d498957cd356e533f2132d6956'
|
|
|
|
|
2012-02-29 01:44:13 +00:00
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
|
|
# remove the autoreconf if possible, no comment provided about why it is there
|
|
|
|
# so we have no basis to make a decision at this point.
|
2012-02-29 01:47:09 +00:00
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2012-02-29 01:44:13 +00:00
|
|
|
end
|
|
|
|
|
2010-02-05 00:03:28 +00:00
|
|
|
def install
|
|
|
|
system "autoreconf"
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|