aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libdvdcss.rb
blob: 3ffcfcba0e208dfc72b7452e5a3a0dc89ce718d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require 'formula'

class Libdvdcss < Formula
  url 'http://download.videolan.org/pub/libdvdcss/1.2.9/libdvdcss-1.2.9.tar.bz2'
  md5 '553383d898826c285afb2ee453b07868'
  homepage 'http://www.videolan.org/developers/libdvdcss.html'

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