New formula libvpx (Nathan de Vries)

master
David Höppner 2010-08-26 20:07:32 +02:00
parent ec9dc40382
commit 2ab52aa7fb
1 changed files with 16 additions and 0 deletions

16
Formula/libvpx.rb Normal file
View File

@ -0,0 +1,16 @@
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