aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/imlib2.rb
blob: ba61ca6fb47a5324ec081bcf31e2b4f5de5f70bb (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
  depends_on :x11 # for Freetype

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