18 lines
554 B
Ruby
18 lines
554 B
Ruby
require 'formula'
|
|
|
|
class Xvid < Formula
|
|
homepage 'http://www.xvid.org'
|
|
url 'http://fossies.org/unix/privat/xvidcore-1.3.2.tar.gz'
|
|
# Official download takes a long time to fail, so set it as the mirror for now
|
|
mirror 'http://downloads.xvid.org/downloads/xvidcore-1.3.2.tar.gz'
|
|
sha1 '56e065d331545ade04c63c91153b9624b51d6e1b'
|
|
|
|
def install
|
|
cd 'build/generic' do
|
|
system "./configure", "--disable-assembly", "--prefix=#{prefix}"
|
|
system "make"
|
|
ENV.j1 # Or install sometimes fails
|
|
system "make install"
|
|
end
|
|
end
|
|
end
|