New formula: imlib2

master
Jean-Michel Lacroix 2010-08-02 23:34:39 -04:00 committed by Adam Vandenberg
parent 189edf0ace
commit a6eb8c316e
1 changed files with 17 additions and 0 deletions

17
Formula/imlib2.rb Normal file
View File

@ -0,0 +1,17 @@
require 'formula'
class Imlib2 <Formula
url 'http://downloads.sourceforge.net/project/enlightenment/imlib2-src/1.4.4/imlib2-1.4.4.tar.bz2'
homepage 'http://sourceforge.net/projects/enlightenment/files/'
md5 'b6de51879502e857d5b1f7622267a030'
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