homebrew-core/Formula/pdf2json.rb
Brett Koonce 3ec366fe93 pdf2json 0.61
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-01 19:33:35 -08:00

18 lines
528 B
Ruby

require 'formula'
class Pdf2json < Formula
homepage 'http://code.google.com/p/pdf2json/'
url 'http://pdf2json.googlecode.com/files/pdf2json-0.61.tar.gz'
sha1 'd7bfcf89ab82741ed014d3499fe7505d7168686d'
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