078b62b7b4
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
16 lines
438 B
Ruby
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
|