aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libaacs.rb
blob: 063ad04bb72f1584d6ea7bb5d9204e122936e178 (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
require 'formula'

class Libaacs < Formula
  homepage 'http://www.videolan.org/developers/libaacs.html'
  url 'ftp://ftp.videolan.org/pub/videolan/libaacs/0.6.0/libaacs-0.6.0.tar.bz2'
  sha1 'b0b82875c43f5bd8f28a249d0fc1eba48420b9e8'
  head 'git://git.videolan.org/libaacs.git'

  if build.head?
    depends_on :autoconf => :build
    depends_on :automake => :build
    depends_on :libtool  => :build
  end

  depends_on 'bison' => :build
  depends_on 'libgcrypt'

  def install
    system './bootstrap' if build.head?
    system "./configure", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end