homebrew-core/Formula/eina.rb

25 lines
604 B
Ruby

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