Added xvid formula

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Grayson Manley 2010-09-07 02:07:43 -05:00 committed by Adam Vandenberg
parent 2c3d9d7d55
commit 078b62b7b4

16
Formula/xvid.rb Normal file
View file

@ -0,0 +1,16 @@
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