homebrew-core/Formula/libdvdcss.rb

24 lines
710 B
Ruby
Raw Normal View History

2014-08-22 02:44:10 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Libdvdcss < Formula
2014-08-22 02:44:10 +00:00
homepage "http://www.videolan.org/developers/libdvdcss.html"
url "http://download.videolan.org/pub/libdvdcss/1.3.0/libdvdcss-1.3.0.tar.bz2"
sha1 "b3ccd70a510aa04d644f32b398489a3122a7e11a"
2012-09-03 21:00:52 +00:00
2014-08-22 02:44:10 +00:00
head "svn://svn.videolan.org/libdvdcss/trunk"
2014-05-01 21:08:51 +00:00
bottle do
cellar :any
2014-10-19 22:28:11 +00:00
revision 1
sha1 "7709d75dbacced986314aba9c05f7e9351d9aeca" => :yosemite
sha1 "dd85bca762d539179011f67a7196bd3a3392abac" => :mavericks
sha1 "8d1e8dd357ac40b115c785e054041616b79a2d73" => :mountain_lion
2014-05-01 21:08:51 +00:00
end
def install
2012-09-03 21:00:52 +00:00
system "./bootstrap" if build.head?
system "./configure", "--prefix=#{prefix}", "--disable-dependency-tracking"
system "make install"
end
end