homebrew-core/Formula/eet.rb
2015-11-19 17:03:53 +01:00

37 lines
1.2 KiB
Ruby

class Eet < Formula
desc "Library for writing arbitrary chunks of data to a file using compression"
homepage "https://docs.enlightenment.org/auto/eet/eet_main.html"
url "https://download.enlightenment.org/releases/eet-1.7.10.tar.gz"
sha256 "c424821eb8ba09884d3011207b1ecec826bc45a36969cd4978b78f298daae1ee"
bottle do
cellar :any
sha256 "4abc83f57045bac2a616e9fad2ac2682cc0dc02349aee61eb3be476927b0a234" => :yosemite
sha256 "13ed7b21488a38091719103a5f10eb525ed0dc2f7488a86e380ee6e1b06833ae" => :mavericks
sha256 "461aa471fb79395d1a9288eb923f6ab5039230291c605203dd86455c66c13a14" => :mountain_lion
end
head do
url "https://git.enlightenment.org/legacy/eet.git/"
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
depends_on "pkg-config" => :build
depends_on "eina"
depends_on "jpeg"
depends_on "lzlib"
depends_on "openssl"
conflicts_with "efl", :because => "both install `eet` binaries"
def install
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--disable-silent-rules",
"--prefix=#{prefix}"
system "make", "install"
end
end