blob: c7542155e9d3ccc90ad1bb19b7e2ffc9e74d58a0 (
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'
sha1 '3fa5188eaaa2fc83fb9c4196f6695a23cb17f3bc'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|