25 lines
666 B
Ruby
25 lines
666 B
Ruby
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
|