2011-10-28 16:51:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Eet < Formula
|
|
|
|
homepage 'http://trac.enlightenment.org/e/wiki/Eet'
|
2013-03-30 16:21:00 +00:00
|
|
|
url 'http://download.enlightenment.org/releases/eet-1.7.5.tar.gz'
|
|
|
|
sha1 'e418110ffdfe1a3ed32b9bc68e4f7bf628d16654'
|
2012-05-10 14:10:12 +00:00
|
|
|
|
|
|
|
head 'http://svn.enlightenment.org/svn/e/trunk/eet/'
|
2011-10-28 16:51:43 +00:00
|
|
|
|
2012-08-27 05:25:56 +00:00
|
|
|
if build.head?
|
2012-07-07 18:08:22 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
|
|
|
end
|
|
|
|
|
2011-10-28 16:51:43 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'eina'
|
|
|
|
depends_on 'jpeg'
|
|
|
|
depends_on 'lzlib'
|
|
|
|
|
|
|
|
def install
|
2012-08-27 05:25:56 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2011-10-28 16:51:43 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|