ec5ec2b0b6
Upgrade arabica to the 2010 November archive, 20101023. Add `fails_with :clang` block to handle an undeclared identifier. Add upstream bug report url in the comments. Remove the autotools deps and the autoreconf. They're not needed. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
22 lines
739 B
Ruby
22 lines
739 B
Ruby
require 'formula'
|
|
|
|
class Arabica < Formula
|
|
homepage 'http://www.jezuk.co.uk/cgi-bin/view/arabica'
|
|
url 'http://sourceforge.net/projects/arabica/files/arabica/November-10/arabica-2010-November.tar.bz2'
|
|
version '20101023'
|
|
sha1 '03f8a8be9ad0a01482c397542f1fd06846424660'
|
|
|
|
# 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'"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|