New formula libvpx (Nathan de Vries)
parent
ec9dc40382
commit
2ab52aa7fb
|
@ -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
|
Loading…
Reference in New Issue