2014-11-14 23:25:07 +00:00
|
|
|
require "formula"
|
2011-10-28 16:51:19 +00:00
|
|
|
|
|
|
|
class Eina < Formula
|
2014-11-14 23:25:07 +00:00
|
|
|
homepage "http://trac.enlightenment.org/e/wiki/Eina"
|
|
|
|
url "http://download.enlightenment.org/releases/eina-1.7.10.tar.gz"
|
|
|
|
sha1 "c2544357b27f59d1592a02228cb277dc6b4ef797"
|
2012-05-10 14:10:12 +00:00
|
|
|
|
2014-10-22 14:41:51 +00:00
|
|
|
bottle do
|
2014-11-14 23:34:47 +00:00
|
|
|
sha1 "58d642bbf7088e75415c2d7267c1170e7bd99c39" => :yosemite
|
|
|
|
sha1 "17da185c9c97ac84a55fb814a69171da1db77bbf" => :mavericks
|
|
|
|
sha1 "1310e97405ab4ff2ab1160420ac8b0f4aa74cec7" => :mountain_lion
|
2014-10-22 14:41:51 +00:00
|
|
|
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/eina/"
|
2011-10-28 16:51:19 +00:00
|
|
|
|
2014-11-14 23:25:07 +00:00
|
|
|
depends_on "autoconf" => :build
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
2012-02-28 15:39:22 +00:00
|
|
|
end
|
|
|
|
|
2014-11-14 23:25:07 +00:00
|
|
|
depends_on "pkg-config" => :build
|
2013-09-20 15:15:52 +00:00
|
|
|
|
2011-10-28 16:51:19 +00:00
|
|
|
def install
|
2012-08-28 04:32:13 +00:00
|
|
|
system "./autogen.sh" if build.head?
|
2011-10-28 16:51:19 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2014-11-14 23:25:07 +00:00
|
|
|
"--disable-silent-rules",
|
2011-10-28 16:51:19 +00:00
|
|
|
"--prefix=#{prefix}"
|
2014-11-14 23:25:07 +00:00
|
|
|
system "make", "install"
|
2011-10-28 16:51:19 +00:00
|
|
|
end
|
|
|
|
end
|