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

class Pdf2svg <Formula
  url 'http://www.cityinthesky.co.uk/files/pdf2svg-0.2.1.tar.gz'
  homepage 'http://www.cityinthesky.co.uk/pdf2svg.html'
  md5 '59b3b9768166f73b77215e95d91f0a9d'

  depends_on "poppler"
  depends_on "gtk+" # Includes atk and cairo, through pango, if needed

  def install
    ENV.x11
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end