2010-04-09 22:57:44 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Svg2png < Formula
|
2010-04-09 22:57:44 +00:00
|
|
|
url 'http://cairographics.org/snapshots/svg2png-0.1.3.tar.gz'
|
|
|
|
homepage 'http://cairographics.org/'
|
|
|
|
md5 'ba266c00486ffd93b8a46d59028aaef9'
|
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-04-09 22:57:44 +00:00
|
|
|
depends_on 'libsvg-cairo'
|
|
|
|
|
|
|
|
def install
|
2011-03-14 21:47:29 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--mandir=#{man}"
|
2010-04-09 22:57:44 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|