blob: 5ecaf0950a446df46c97789295e77f81feefeb36 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
 | require 'formula'
class Libdca < Formula
  url 'http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2'
  homepage 'http://www.videolan.org/developers/libdca.html'
  md5 'dab6b2795c66a82a6fcd4f8343343021'
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end
 |