homebrew-core/Formula/pixman.rb

17 lines
476 B
Ruby
Raw Normal View History

2010-01-04 23:47:07 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Pixman < Formula
2011-04-08 15:49:11 +00:00
url 'http://cgit.freedesktop.org/pixman/snapshot/pixman-0.21.6.tar.bz2'
2010-01-04 23:47:07 +00:00
homepage 'http://www.cairographics.org/'
2011-04-08 15:49:11 +00:00
sha1 '7725825e3bdf3edbd00de8f4162c30d42387a8db'
2010-01-04 23:47:07 +00:00
depends_on 'pkg-config' => :build
2010-01-04 23:47:07 +00:00
def install
2011-03-14 21:39:00 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-gtk=no" # Don't need to build tests
2010-01-04 23:47:07 +00:00
system "make install"
end
end