aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/imlib2.rb
blob: baf302d6fcdc560973ff61b1001f1c4a989c65bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Imlib2 < Formula
  homepage 'http://sourceforge.net/projects/enlightenment/files/'
  url 'http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.5/imlib2-1.4.5.tar.bz2'
  md5 '859e5fede51ec819f4314eee11da3ea5'

  depends_on 'pkg-config' => :build

  def install
    ENV.x11 # For freetype
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--enable-amd64=no"
    system "make install"
  end
end