blob: 420e64bbf9f90678f5f5e9d0fb54b53aad701ba7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
require 'formula'
class Arabica < Formula
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'
sha1 '34d043607e048e0972a57e31bfff09086d893d14'
head do
url 'https://github.com/jezhiggins/arabica.git'
depends_on 'autoconf'
depends_on 'automake'
depends_on 'libtool'
end
def install
system "autoreconf", "-fvi" if build.head?
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end
|