homebrew-core/Formula/eet.rb

37 lines
1,003 B
Ruby
Raw Normal View History

2014-11-14 23:25:07 +00:00
require "formula"
class Eet < Formula
2014-11-14 23:25:07 +00:00
homepage "http://trac.enlightenment.org/e/wiki/Eet"
url "http://download.enlightenment.org/releases/eet-1.7.10.tar.gz"
sha1 "7cf6938cc76fbf1cd8e2721606d61c93c09edd9e"
2012-05-10 14:10:12 +00:00
2014-11-14 23:34:47 +00:00
bottle do
cellar :any
sha1 "73d9599c2ab8fa5067ff4fc4fddacbeb19b825c4" => :yosemite
sha1 "36315f8d5bc59d56c6082e76e8dd2a9bfaec3735" => :mavericks
sha1 "dcc57b32e7225fe86c83a5bfaade296d828b9ba0" => :mountain_lion
end
2013-09-20 15:15:52 +00:00
head do
2014-11-14 23:25:07 +00:00
url "http://svn.enlightenment.org/svn/e/trunk/eet/"
2014-11-14 23:25:07 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
2012-07-07 18:08:22 +00:00
end
2014-11-14 23:25:07 +00:00
depends_on "pkg-config" => :build
depends_on "eina"
depends_on "jpeg"
depends_on "lzlib"
depends_on "openssl"
def install
2012-08-27 05:25:56 +00:00
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
2014-11-14 23:25:07 +00:00
"--disable-silent-rules",
"--prefix=#{prefix}"
2014-11-14 23:25:07 +00:00
system "make", "install"
end
end