2010-08-26 18:07:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libvpx < Formula
|
2012-02-22 04:48:36 +00:00
|
|
|
homepage 'http://www.webmproject.org/code/'
|
2014-03-05 07:22:08 +00:00
|
|
|
url 'https://webm.googlecode.com/files/libvpx-v1.3.0.tar.bz2'
|
2014-01-10 23:51:55 +00:00
|
|
|
sha1 '191b95817aede8c136cc3f3745fb1b8c50e6d5dc'
|
2010-08-26 18:07:32 +00:00
|
|
|
|
2011-03-26 20:23:22 +00:00
|
|
|
depends_on 'yasm' => :build
|
|
|
|
|
2012-10-21 19:52:51 +00:00
|
|
|
option 'gcov', 'Enable code coverage'
|
|
|
|
option 'mem-tracker', 'Enable tracking memory usage'
|
|
|
|
option 'visualizer', 'Enable post processing visualizer'
|
2011-10-14 05:38:07 +00:00
|
|
|
|
2010-08-26 18:07:32 +00:00
|
|
|
def install
|
2011-10-14 05:38:07 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--enable-pic",
|
2012-02-17 04:17:31 +00:00
|
|
|
"--disable-examples",
|
|
|
|
"--disable-runtime-cpu-detect"]
|
2012-10-21 19:52:51 +00:00
|
|
|
args << "--enable-gcov" if build.include? "gcov" and not ENV.compiler == :clang
|
|
|
|
args << "--enable-mem-tracker" if build.include? "mem-tracker"
|
|
|
|
args << "--enable-postproc-visualizer" if build.include? "visualizer"
|
2013-11-09 17:42:19 +00:00
|
|
|
|
|
|
|
ENV.append "CXXFLAGS", "-DGTEST_USE_OWN_TR1_TUPLE=1" # Mavericks uses libc++ which doesn't supply <TR1/tuple>
|
2012-02-15 15:59:23 +00:00
|
|
|
|
2012-05-20 21:17:58 +00:00
|
|
|
# see http://code.google.com/p/webm/issues/detail?id=401
|
|
|
|
# Configure misdetects 32-bit 10.6.
|
|
|
|
# Determine if the computer runs Darwin 9, 10, or 11 using uname -r.
|
|
|
|
osver = %x[uname -r | cut -d. -f1].chomp
|
|
|
|
if MacOS.prefer_64_bit? then
|
|
|
|
args << "--target=x86_64-darwin#{osver}-gcc"
|
|
|
|
else
|
|
|
|
args << "--target=x86-darwin#{osver}-gcc"
|
|
|
|
end
|
|
|
|
|
2012-02-22 04:48:36 +00:00
|
|
|
mkdir 'macbuild' do
|
2012-02-15 15:59:23 +00:00
|
|
|
system "../configure", *args
|
|
|
|
system "make install"
|
|
|
|
end
|
2010-08-26 18:07:32 +00:00
|
|
|
end
|
|
|
|
end
|