95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
21 lines
679 B
Ruby
21 lines
679 B
Ruby
class Arabica < Formula
|
|
desc "XML toolkit written in C++"
|
|
homepage "http://www.jezuk.co.uk/cgi-bin/view/arabica"
|
|
url "https://downloads.sourceforge.net/project/arabica/arabica/November-12/arabica-2012-November.tar.gz"
|
|
version "20121126"
|
|
sha256 "2e64e38d773ff37f5d7da181fe07d6dde2c35e633b9772b604439a286cd4f98b"
|
|
|
|
head do
|
|
url "https://github.com/jezhiggins/arabica.git"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
system "autoreconf", "-fvi" if build.head?
|
|
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|