bdac974101
This removes all the dependencies, because they were not used. mupdf ships with bundles versions of all the libs in the directory thirdparty and those are used, even if the dependencies are specified. Closes Homebrew/homebrew#28154. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
15 lines
348 B
Ruby
15 lines
348 B
Ruby
require 'formula'
|
|
|
|
class Mupdf < Formula
|
|
homepage 'http://mupdf.com'
|
|
url 'https://mupdf.googlecode.com/files/mupdf-1.3-source.tar.gz'
|
|
sha1 '082325aceb5565b07b82c2b6cc52a97533e03cf9'
|
|
revision 1
|
|
|
|
depends_on :macos => :snow_leopard
|
|
depends_on :x11
|
|
|
|
def install
|
|
system "make", "install", "build=release", "prefix=#{prefix}"
|
|
end
|
|
end
|