47baee9f06
GNU FriBidi is an implementation of the Unicode Bidirectional Algorithm (bidi).
12 lines
324 B
Ruby
12 lines
324 B
Ruby
require 'brewkit'
|
|
|
|
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
|