diff options
| author | David Höppner | 2010-08-29 14:05:32 +0200 |
|---|---|---|
| committer | David Höppner | 2010-08-29 14:05:32 +0200 |
| commit | 851e1f5924587e5b871a0c10da97b80287cdc2ad (patch) | |
| tree | 1239b32737bd4da9ca977c15b9b6b8101a7812eb | |
| parent | 289198caab21a49d65f68d38fa0b998fcc6bed46 (diff) | |
| download | homebrew-851e1f5924587e5b871a0c10da97b80287cdc2ad.tar.bz2 | |
libvpx: updated formula by pheaver (Philip Weaver)
| -rw-r--r-- | Library/Formula/libvpx.rb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/Library/Formula/libvpx.rb b/Library/Formula/libvpx.rb index 92f19c5ac..dd75a058f 100644 --- a/Library/Formula/libvpx.rb +++ b/Library/Formula/libvpx.rb @@ -1,16 +1,12 @@ require 'formula' class Libvpx <Formula - head 'git://review.webmproject.org/libvpx.git', :tag => 'v0.9.0' + url 'http://webm.googlecode.com/files/libvpx-0.9.1.tar.bz2' + sha1 'a18acb7a1a2fd62268e63aab860b43ff04669b9e' 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" + system "./configure", "--prefix=#{prefix}" + system "make install" end end |
