aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/fribidi.rb
blob: e552cf7109b6dbec72f2b6e253bec16fad43a19e (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.19.2.tar.gz'
  md5 '626db17d2d99b43615ad9d12500f568a'
  homepage 'http://fribidi.org/'

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