dc221bd41b
Closes Homebrew/homebrew#9579. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
18 lines
545 B
Ruby
18 lines
545 B
Ruby
require 'formula'
|
|
|
|
class Embryo < Formula
|
|
url 'http://download.enlightenment.org/releases/embryo-1.1.0.tar.gz'
|
|
homepage 'http://trac.enlightenment.org/e/wiki/Embryo'
|
|
md5 'aded5754ee7f586e3a0631e0fa3abcc8'
|
|
head 'http://svn.enlightenment.org/svn/e/trunk/embryo/', :using => :svn
|
|
|
|
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
|