aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pixman.rb
blob: 6dcbf29b3de2386ffbcf5460b1167d6eaf314e94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class Pixman < Formula
  homepage 'http://www.cairographics.org/'
  url 'http://cairographics.org/releases/pixman-0.24.0.tar.gz'
  sha1 '5459916d979e3db93aac45ffda2412cd0500f393'

  depends_on 'pkg-config' => :build

  def install
    if ENV.compiler == :llvm
      if MacOS.xcode_version >= "4.1"
        ENV.clang
      else
        ENV.gcc_4_2
      end
    end
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-gtk=no" # Don't need to build tests
    system "make install"
  end
end