homebrew-core/Formula/embryo.rb

33 lines
935 B
Ruby
Raw Normal View History

2014-11-14 23:25:07 +00:00
require "formula"
class Embryo < Formula
2014-11-14 23:25:07 +00:00
homepage "http://trac.enlightenment.org/e/wiki/Embryo"
url "http://download.enlightenment.org/releases/embryo-1.7.10.tar.gz"
sha1 "4e4b3eb809211876655564920fdb773fb034f22c"
2012-05-10 14:10:12 +00:00
2014-11-14 23:34:47 +00:00
bottle do
sha1 "8f7302633c71b4cbe0ca77b12a2c9a934c10f9f8" => :yosemite
sha1 "9edfb2b516c9934858264d3905beb7a0e2aee232" => :mavericks
sha1 "b2d9d7f7322053097094c4afe1474eec7e19987b" => :mountain_lion
end
2013-09-20 15:15:53 +00:00
head do
2014-11-14 23:25:07 +00:00
url "http://svn.enlightenment.org/svn/e/trunk/embryo/"
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"
def install
2012-08-28 04:40:31 +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