aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdvdread.rb
blob: 78dd31f7c2dea056242b7513561383c387aed144 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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'

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