Add formula for svg2pdf

Signed-off-by: Adam Vandenberg <flangy@gmail.com>

* Clean up
This commit is contained in:
Jan Lehnardt 2010-04-10 00:57:40 +02:00 committed by Adam Vandenberg
parent 215ebfe219
commit 66e8daf942

15
Formula/svg2pdf.rb Normal file
View file

@ -0,0 +1,15 @@
require 'formula'
class Svg2pdf <Formula
url 'http://cairographics.org/snapshots/svg2pdf-0.1.3.tar.gz'
homepage 'http://cairographics.org/'
md5 '0059ba059ff89931cf37720fcd102d8f'
depends_on 'pkg-config'
depends_on 'libsvg-cairo'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end