homebrew-core/Formula/gegl.rb
Dominyk Tiller 01ef534ec9 gegl: added head
Part 2/2 of Closing Homebrew/homebrew#33582.
2014-10-26 11:37:01 +00:00

60 lines
1.6 KiB
Ruby

require "formula"
class Gegl < Formula
homepage "http://www.gegl.org/"
stable do
# Use Debian because the official URL is unreliable.
url "https://mirrors.kernel.org/debian/pool/main/g/gegl/gegl_0.2.0.orig.tar.bz2"
mirror "ftp://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2"
sha1 "764cc66cb3c7b261b8fc18a6268a0e264a91d573"
end
head do
# Use the Github mirror because official git unreliable.
url "https://github.com/GNOME/gegl.git"
depends_on "automake" => :build
depends_on "autoconf" => :build
depends_on "libtool" => :build
end
option :universal
depends_on "intltool" => :build
depends_on "pkg-config" => :build
depends_on "babl"
depends_on "glib"
depends_on "gettext"
depends_on "libpng"
depends_on "jpeg" => :optional
depends_on "lua" => :optional
depends_on "cairo" => :optional
depends_on "pango" => :optional
depends_on "librsvg" => :optional
depends_on "sdl" => :optional
def install
# ./configure breaks when optimization is enabled with llvm
ENV.no_optimization if ENV.compiler == :llvm
argv = %W[
--disable-debug
--disable-dependency-tracking
--prefix=#{prefix}
--disable-docs
]
if build.universal?
ENV.universal_binary
# ffmpeg's formula is currently not universal-enabled
argv << "--without-libavformat"
opoo "Compilation may fail at gegl-cpuaccel.c using gcc for a universal build" if ENV.compiler == :gcc
end
system "./autogen.sh" if build.head?
system "./configure", *argv
system "make", "install"
end
end