homebrew-core/Formula/eet.rb
Max Howell 06cb65df78 These now depend on automake for Xcode >= 4.3
Fixes Homebrew/homebrew#10559.

Also added missing deps for osm2pgsql.

Removed some ACLOCAL_FLAGS stuff as in theory this is not set in ENV.rb. Would like to see if it causes trouble. Should just work now.
2012-02-28 15:40:59 +00:00

25 lines
707 B
Ruby

require 'formula'
class Eet < Formula
url 'http://download.enlightenment.org/releases/eet-1.5.0.tar.gz'
homepage 'http://trac.enlightenment.org/e/wiki/Eet'
md5 'f6fd734fbf6a2852abf044a2e1a8cabf'
head 'http://svn.enlightenment.org/svn/e/trunk/eet/', :using => :svn
depends_on 'pkg-config' => :build
depends_on 'eina'
depends_on 'jpeg'
depends_on 'lzlib'
if ARGV.build_head? and MacOS.xcode_version >= "4.3"
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
system "./autogen.sh" if ARGV.build_head?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end