blob: c73c0b18b8ce6f5721e6c565319202bbb7092b18 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class Mupdf < Formula
homepage 'http://mupdf.com'
url 'http://mupdf.com/downloads/mupdf-1.6-source.tar.gz'
sha1 '491d7a3b131589791c7df6dd8161c6bfe41ce74a'
bottle do
cellar :any
sha1 "30f8a874a36fa64447c1c2acd691df68ef070061" => :mavericks
sha1 "aabd22a66449e271c00078f097fd7ae212019fa3" => :mountain_lion
sha1 "98fbed77b4bf143d13b091b8a4c4349438f7ecd4" => :lion
end
depends_on :macos => :snow_leopard
depends_on :x11
def install
system "make", "install",
"build=release",
"verbose=yes",
"CC=#{ENV.cc}",
"prefix=#{prefix}"
end
end
|