aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gpac.rb
blob: 2eb8afe4dfb6ff523df360d25055b5fd5fbaada7 (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
require 'formula'

#
# Installs a relatively minimalist version of the GPAC tools. The
# most commonly used tool in this package is the MP4Box metadata
# interleaver, which has relatively few dependencies.
#
# The challenge with building everything is that Gpac depends on
# a much older version of FFMpeg and WxWidgets than the version
# that Brew installs
#

class Gpac < Formula
  url 'http://downloads.sourceforge.net/gpac/gpac-0.4.5.tar.gz'
  homepage 'http://gpac.sourceforge.net/index.php'
  md5 '755e8c438a48ebdb13525dd491f5b0d1'
  head 'https://gpac.svn.sourceforge.net/svnroot/gpac/trunk/gpac', :using => :svn

  depends_on 'sdl' => :optional

  def install
    ENV.deparallelize
    system "chmod +x configure"
    system "./configure", "--disable-wx", "--use-ffmpeg=no",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          # Force detection of X libs on 64-bit kernel
                          "--extra-ldflags=-L/usr/X11/lib"
    system "make"
    system "make install"
  end
end