aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvpx.rb
blob: dd75a058f6789e13ec1a7a0426b2d6a4599df030 (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-0.9.1.tar.bz2'
  sha1 'a18acb7a1a2fd62268e63aab860b43ff04669b9e'
  homepage 'http://www.webmproject.org/code/'

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end