2010-04-09 22:57:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libsvg < Formula
|
2010-04-09 22:57:25 +00:00
|
|
|
url 'http://cairographics.org/snapshots/libsvg-0.1.4.tar.gz'
|
|
|
|
homepage 'http://cairographics.org/'
|
|
|
|
md5 'ce0715e3013f78506795fba16e8455d3'
|
|
|
|
|
|
|
|
depends_on 'jpeg'
|
|
|
|
|
|
|
|
def install
|
2011-03-14 21:41:37 +00:00
|
|
|
ENV.x11 # for libpng
|
2010-04-09 22:57:25 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|