homebrew-core/Formula/eet.rb

38 lines
1.2 KiB
Ruby
Raw Normal View History

class Eet < Formula
desc "Library for writing arbitrary chunks of data to a file using compression"
2015-05-11 10:29:05 +00:00
homepage "https://docs.enlightenment.org/auto/eet/eet_main.html"
url "https://download.enlightenment.org/releases/eet-1.7.10.tar.gz"
sha256 "c424821eb8ba09884d3011207b1ecec826bc45a36969cd4978b78f298daae1ee"
2012-05-10 14:10:12 +00:00
2014-11-14 23:34:47 +00:00
bottle do
cellar :any
2015-11-19 15:45:31 +00:00
sha256 "4abc83f57045bac2a616e9fad2ac2682cc0dc02349aee61eb3be476927b0a234" => :yosemite
sha256 "13ed7b21488a38091719103a5f10eb525ed0dc2f7488a86e380ee6e1b06833ae" => :mavericks
sha256 "461aa471fb79395d1a9288eb923f6ab5039230291c605203dd86455c66c13a14" => :mountain_lion
2014-11-14 23:34:47 +00:00
end
2013-09-20 15:15:52 +00:00
head do
2015-05-11 10:29:05 +00:00
url "https://git.enlightenment.org/legacy/eet.git/"
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"
2015-11-01 22:13:08 +00:00
conflicts_with "efl", :because => "both install `eet` binaries"
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