homebrew-core/Formula/embryo.rb

26 lines
626 B
Ruby
Raw Normal View History

require 'formula'
class Embryo < Formula
homepage 'http://trac.enlightenment.org/e/wiki/Embryo'
url 'http://download.enlightenment.org/releases/embryo-1.7.8.tar.gz'
sha1 '879c0dd75de6c402707da4981716a2b7c1dab618'
2012-05-10 14:10:12 +00:00
2013-09-20 15:15:53 +00:00
head do
url 'http://svn.enlightenment.org/svn/e/trunk/embryo/'
2013-11-13 16:52:55 +00:00
depends_on :autoconf
2012-07-07 18:08:22 +00:00
depends_on :automake
depends_on :libtool
end
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",
"--prefix=#{prefix}"
system "make install"
end
end