homebrew-core/Formula/eina.rb

32 lines
907 B
Ruby
Raw Normal View History

2014-11-14 23:25:07 +00:00
require "formula"
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/"
2014-11-14 23:25:07 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
2014-11-14 23:25:07 +00:00
depends_on "pkg-config" => :build
2013-09-20 15:15:52 +00:00
def install
2012-08-28 04:32:13 +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