homebrew-core/Formula/pdf2json.rb
Brett Koonce 2030286ef0 pdf2json 0.66
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-12-15 10:58:04 -08:00

16 lines
512 B
Ruby

require 'formula'
class Pdf2json < Formula
homepage 'http://code.google.com/p/pdf2json/'
url 'http://pdf2json.googlecode.com/files/pdf2json-0.66.tar.gz'
sha1 'e00cb966d9bf1952b56696210788656b7e58094a'
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}"
bin.install 'src/pdf2json'
end
end