2011-10-28 16:51:43 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Eet < Formula
|
|
|
|
homepage 'http://trac.enlightenment.org/e/wiki/Eet'
|
2012-08-05 03:23:04 +00:00
|
|
|
url 'http://download.enlightenment.org/releases/eet-1.6.1.tar.gz'
|
|
|
|
sha1 '88dbbfae46ff7295fc7a9e3fcfef639b855d67ac'
|
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-07-07 18:08:22 +00:00
|
|
|
if ARGV.build_head?
|
|
|
|
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
|
|
|
|
system "./autogen.sh" if ARGV.build_head?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|