homebrew-core/Formula/eina.rb

31 lines
1 KiB
Ruby
Raw Normal View History

class Eina < Formula
desc "Eina is a core data structure and common utility library"
2015-05-11 10:31:25 +00:00
homepage "https://docs.enlightenment.org/auto/eina/eina_main.html"
url "https://download.enlightenment.org/releases/eina-1.7.10.tar.gz"
sha256 "3f33ae45c927faedf8d342106136ef1269cf8dde6648c8165ce55e72341146e9"
2012-05-10 14:10:12 +00:00
2014-10-22 14:41:51 +00:00
bottle do
2015-11-19 15:45:31 +00:00
sha256 "4624c44c02ada4a1bc5a967efb13a2e5602cca01e61e83bfa03d389006bdb852" => :yosemite
sha256 "dbfcbd09d224c85aa1697d5892bfbe9e9aa03ba153a4aa2f4eb13625555dce68" => :mavericks
sha256 "6d3680d80b19884486c8379bf7cced4c141b9d7c7bc97c2044cd617343835ed0" => :mountain_lion
2014-10-22 14:41:51 +00:00
end
2013-09-20 15:15:52 +00:00
head do
2015-05-11 10:31:25 +00:00
url "https://git.enlightenment.org/legacy/eina.git/"
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