homebrew-core/Formula/libdca.rb

15 lines
430 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libdca < Formula
homepage 'http://www.videolan.org/developers/libdca.html'
2013-01-29 05:22:50 +00:00
url 'http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2'
sha1 '3fa5188eaaa2fc83fb9c4196f6695a23cb17f3bc'
def install
2013-01-29 05:22:50 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make"
system "make install"
end
end