aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorFelix Bùˆnemann2014-04-04 23:21:49 +0200
committerJack Nagel2014-04-05 13:32:21 -0500
commit78ac9fe72a8210d7fca6287ac40d235a52e59991 (patch)
tree63714e406e8924c10ee4ac1f9a2060dd73482f40 /Library
parent40425cf30dfb874a3441027fa999106f7d52e109 (diff)
downloadhomebrew-78ac9fe72a8210d7fca6287ac40d235a52e59991.tar.bz2
mupdf: Remove unused dependencies
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 #28154. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/mupdf.rb13
1 files changed, 1 insertions, 12 deletions
diff --git a/Library/Formula/mupdf.rb b/Library/Formula/mupdf.rb
index ba5c823f7..e2f724f7c 100644
--- a/Library/Formula/mupdf.rb
+++ b/Library/Formula/mupdf.rb
@@ -7,20 +7,9 @@ class Mupdf < Formula
revision 1
depends_on :macos => :snow_leopard
-
- depends_on 'jpeg'
- depends_on 'openjpeg'
- depends_on 'jbig2dec'
- depends_on 'libpng'
- depends_on 'freetype'
depends_on :x11
def install
- openjpeg = Formula["openjpeg"]
- ENV.append 'CPPFLAGS', "-I#{Dir[openjpeg.include/'openjpeg-*'].first}"
- ENV.append 'CFLAGS', '-DNDEBUG'
- ENV['SYS_FREETYPE_INC'] = "-I#{MacOS::X11.include}/freetype2"
-
- system "make", "install", "prefix=#{prefix}"
+ system "make", "install", "build=release", "prefix=#{prefix}"
end
end