homebrew-core/Formula/eina.rb

25 lines
604 B
Ruby
Raw Normal View History

require 'formula'
class Eina < Formula
homepage 'http://trac.enlightenment.org/e/wiki/Eina'
url 'http://download.enlightenment.org/releases/eina-1.7.8.tar.gz'
sha1 'f655b2691d3976fdc2cfe116166e790c1b8bc90d'
2012-05-10 14:10:12 +00:00
head 'http://svn.enlightenment.org/svn/e/trunk/eina/'
2012-08-28 04:32:13 +00:00
depends_on 'pkg-config' => :build
if build.head?
2012-07-07 18:08:22 +00:00
depends_on :autoconf
depends_on :automake
depends_on :libtool
end
def install
2012-08-28 04:32:13 +00:00
system "./autogen.sh" if build.head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end