aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/arabica.rb
blob: 89a7e3a1a49a1f0a56c6005948576665eebd460f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Arabica < Formula
  homepage 'http://www.jezuk.co.uk/cgi-bin/view/arabica'
  url 'https://github.com/ashb/Arabica/tarball/20100203'
  md5 '9318c4d498957cd356e533f2132d6956'

  def install
    system "autoreconf"
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end