aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdvdread.rb
blob: f7183d25bceaa4f97b45a4b1fc84ad49f3a274d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Libdvdread < Formula
  url 'http://www.dtek.chalmers.se/groups/dvd/dist/libdvdread-0.9.7.tar.gz'
  homepage 'http://www.dtek.chalmers.se/groups/dvd/'
  md5 '078788c9241ae16763529e1235502337'

  depends_on 'libdvdcss' => :optional

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}",
                          "--mandir=#{man}",
                          "--with-libdvdcss"
    system "make install"
  end
end