homebrew-core/Formula/imlib2.rb

18 lines
533 B
Ruby
Raw Normal View History

2010-08-03 03:34:39 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Imlib2 < Formula
2010-08-03 03:34:39 +00:00
homepage 'http://sourceforge.net/projects/enlightenment/files/'
2012-03-18 03:28:11 +00:00
url 'http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.5/imlib2-1.4.5.tar.bz2'
sha1 'af86a2c38f4bc3806db57e64e74dc9814ad474a0'
2010-08-03 03:34:39 +00:00
depends_on 'pkg-config' => :build
depends_on :x11 # for Freetype
2010-08-03 03:34:39 +00:00
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-amd64=no"
system "make install"
end
end