homebrew-core/Formula/libsvg.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

24 lines
676 B
Ruby

class Libsvg < Formula
desc "Library for SVG files"
homepage "http://cairographics.org/"
url "http://cairographics.org/snapshots/libsvg-0.1.4.tar.gz"
sha256 "4c3bf9292e676a72b12338691be64d0f38cd7f2ea5e8b67fbbf45f1ed404bc8f"
revision 1
bottle do
cellar :any
revision 1
sha1 "f81bd41636efb5f9bca9668e0d1eba49f2df5668" => :yosemite
sha1 "7666fa071f1f53c8b680be546b8801cb3067f5a2" => :mavericks
sha1 "a6644f62ac2844f1b73ad26febb49958a413a54f" => :mountain_lion
end
depends_on "libpng"
depends_on "pkg-config" => :build
depends_on "jpeg"
def install
system "./configure", "--prefix=#{prefix}"
system "make", "install"
end
end