29 lines
767 B
Ruby
29 lines
767 B
Ruby
require "formula"
|
|
|
|
class Eet < Formula
|
|
homepage "http://trac.enlightenment.org/e/wiki/Eet"
|
|
url "http://download.enlightenment.org/releases/eet-1.7.10.tar.gz"
|
|
sha1 "7cf6938cc76fbf1cd8e2721606d61c93c09edd9e"
|
|
|
|
head do
|
|
url "http://svn.enlightenment.org/svn/e/trunk/eet/"
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "eina"
|
|
depends_on "jpeg"
|
|
depends_on "lzlib"
|
|
depends_on "openssl"
|
|
|
|
def install
|
|
system "./autogen.sh" if build.head?
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install"
|
|
end
|
|
end
|