blob: 38be0e0a2e24399f55309ce066eb20d818b8bac6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
require 'formula'
class Libvpx <Formula
url 'http://webm.googlecode.com/files/libvpx-v0.9.2.tar.bz2'
sha1 'd3b386773aa11e2385829c078d52b3a3982d1122'
homepage 'http://www.webmproject.org/code/'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|