aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libvpx.rb
blob: 222ace859df52ca0671f88ed3f6108e70540e8e0 (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.5.tar.bz2'
  sha1 '223965ff16737251afb3377c0800d1f8b5f84379'
  homepage 'http://www.webmproject.org/code/'

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