blob: 63ab14cc29ccfd401588fd696bff5777b517f573 (
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.12/libdvdcss-1.2.12.tar.bz2'
  sha1 'f0977374f12fadbbeb45e1ff493adc259247bb09'
  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
  |