aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gegl.rb
blob: cfbb941901cf953b122cfb633d90123a015ee837 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
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

  bottle do
    sha1 "df1f74de4563aa8c1de86cf03cf265c42e923c41" => :yosemite
    sha1 "3c395d3cfaf0e423e7e072c13fe0d51d7829d8a5" => :mavericks
    sha1 "93133f696a63fb0e865d51251b309ea327ab2ce7" => :mountain_lion
  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