blob: d1382905629a3f7cfa06c71c80cd965361ee194c (
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
 | require 'formula'
class Gegl < Formula
  homepage 'http://www.gegl.org/'
  url 'ftp://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2'
  md5 '32b00002f1f1e316115c4ed922e1dec8'
  option :universal
  depends_on 'babl'
  depends_on 'glib'
  depends_on 'gettext'
  depends_on 'intltool' => :build
  depends_on 'pkg-config' => :build
  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 "./configure", *argv
    system "make install"
  end
end
 |