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

class Fribidi <Formula
  url 'http://fribidi.org/download/fribidi-0.10.9.tar.gz'
  md5 '647aee89079b056269ff0918dc1c6d28'
  homepage 'http://fribidi.org/'

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