aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pdf2json.rb
blob: 652e9d1a43207c2060c4bf79156e146d6d1c1cd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
require 'formula'

class Pdf2json < Formula
  homepage 'http://code.google.com/p/pdf2json/'
  url 'https://pdf2json.googlecode.com/files/pdf2json-0.68.tar.gz'
  sha1 '1cb0f4b3b1216c6ce515fd256d92ac196d002a7e'

  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