blob: 24c3c61509f491cf932f8edb1761b0be59ab2541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 'formula'
class Fribidi < Formula
homepage 'http://fribidi.org/'
url 'http://fribidi.org/download/fribidi-0.19.6.tar.bz2'
sha1 '5a6ff82fdee31d27053c39e03223666ac1cb7a6a'
bottle do
cellar :any
revision 1
sha1 "a8953ae123d463733cd73fd28972955e886a5821" => :yosemite
sha1 "cc92ce67750c60add21cc8cd4eebdc5b1057d01b" => :mavericks
sha1 "f1d37cf53fd17aa8e6c09aa7b8045f67de82f19d" => :mountain_lion
end
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|