homebrew-core/Formula/libvpx.rb
2010-08-26 20:07:32 +02:00

16 lines
340 B
Ruby

require 'formula'
class Libvpx <Formula
head 'git://review.webmproject.org/libvpx.git', :tag => 'v0.9.0'
homepage 'http://www.webmproject.org/code/'
depends_on 'yasm'
def install
system "./configure"
system "make"
include.install Dir["vp8/*.h", "vpx_codec/*.h", "vpx_ports/*.h"]
lib.install "libvpx.a"
end
end