homebrew-core/Formula/embryo.rb
Brett Koonce 45efae394b embryo 1.2.0
Closes Homebrew/homebrew#13971.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-05 20:57:06 -07:00

24 lines
617 B
Ruby

require 'formula'
class Embryo < Formula
homepage 'http://trac.enlightenment.org/e/wiki/Embryo'
url 'http://download.enlightenment.org/releases/embryo-1.2.0.tar.gz'
sha1 '5e392a41ead0d696512b02f436eeae8747ddfbcb'
head 'http://svn.enlightenment.org/svn/e/trunk/embryo/'
if ARGV.build_head?
depends_on :automake
depends_on :libtool
end
depends_on 'pkg-config' => :build
depends_on 'eina'
def install
system "./autogen.sh" if ARGV.build_head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end