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

class Libdvdcss < Formula
  homepage 'http://www.videolan.org/developers/libdvdcss.html'
  url 'http://download.videolan.org/pub/libdvdcss/1.2.13/libdvdcss-1.2.13.tar.bz2'
  sha1 '1a4a5e55c7529da46386c1c333340eee2c325a77'

  head 'svn://svn.videolan.org/libdvdcss/trunk'

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