blob: 49a0d3227944ffc84c5a558283647feaf5087c57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Svg2pdf < Formula
homepage 'http://cairographics.org/'
url 'http://cairographics.org/snapshots/svg2pdf-0.1.3.tar.gz'
sha1 '07c5e8b95b43bcdd40d791ccb1a2cb5221093f19'
depends_on 'pkg-config' => :build
depends_on 'libsvg-cairo'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--mandir=#{man}"
system "make install"
end
end
|