blob: 903315e1e9f2db06aa55ed4042cec1e3ff366fba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
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}"
ENV.j1 # Or make fails
system "make"
system "make install"
end
end
end
|