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'
|
2012-06-09 11:06:17 +00:00
|
|
|
url 'http://sourceforge.net/projects/arabica/files/arabica/November-10/arabica-2010-November.tar.bz2'
|
|
|
|
version '20101023'
|
|
|
|
sha1 '03f8a8be9ad0a01482c397542f1fd06846424660'
|
2010-02-05 00:03:28 +00:00
|
|
|
|
2012-06-09 11:06:17 +00:00
|
|
|
# Reported upstream. The project has been dormant since November, 2010.
|
|
|
|
# https://sourceforge.net/tracker/?func=detail&aid=3533824&group_id=56163&atid=479571
|
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
cause "error: use of undeclared identifier 'sputc'"
|
2012-02-29 01:44:13 +00:00
|
|
|
end
|
|
|
|
|
2010-02-05 00:03:28 +00:00
|
|
|
def install
|
2012-06-09 11:06:17 +00:00
|
|
|
system "./configure", "--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2010-02-05 00:03:28 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|