homebrew-core/Formula/xvid.rb
Grayson Manley 078b62b7b4 Added xvid formula
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-09-07 04:01:51 -07:00

16 lines
438 B
Ruby

require 'formula'
class Xvid <Formula
url 'http://downloads.xvid.org/downloads/xvidcore-1.2.2.tar.gz'
homepage 'http://www.xvid.org'
md5 '2ce9b1d280d703b5bc8e702c79e660b5'
def install
cd 'build/generic' do
system "./configure", "--disable-assembly", "--prefix=#{prefix}"
ENV.j1 # Doesn't compile on parallel build
system "make"
system "make install" # Need to call these separately
end
end
end