homebrew-core/Formula/libvpx.rb
Adam Vandenberg bc32b9c869 libvpx 0.9.6
2011-03-26 13:23:22 -07:00

14 lines
330 B
Ruby

require 'formula'
class Libvpx < Formula
url 'http://webm.googlecode.com/files/libvpx-v0.9.6.tar.bz2'
sha1 'a3522bd2b73d52381ba767ded1cbf4760e9cc6f8'
homepage 'http://www.webmproject.org/code/'
depends_on 'yasm' => :build
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end