homebrew-core/Formula/pdf2json.rb
Jack Nagel a7c6015811 pdf2json: use the right compiler
Fixes Homebrew/homebrew#12294.

Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2012-05-17 15:17:42 -05:00

18 lines
526 B
Ruby

require 'formula'
class Pdf2json < Formula
url 'http://pdf2json.googlecode.com/files/pdf2json-0.52-source.tar.gz'
homepage 'http://code.google.com/p/pdf2json/'
md5 '6f2c611bd30218391b0ff35d5a7df049'
depends_on 'xpdf'
def install
system "./configure", "--prefix=#{prefix}"
# Fix manpage install location. See:
# http://code.google.com/p/pdf2json/issues/detail?id=2
inreplace "Makefile", "/man/", "/share/man/"
system "make", "CC=#{ENV.cc}", "CXX=#{ENV.cxx}"
system "make install"
end
end