Last active
December 10, 2015 04:58
-
-
Save woowee/4384426 to your computer and use it in GitHub Desktop.
xvid.org been down? [on 27th, Dec 212]
i tried to install ffmpeg using homebrew though ...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'formula' | |
class Xvid < Formula | |
url 'https://fossies.org/unix/privat/xvidcore-1.3.2.tar.gz' | |
homepage 'https://fossies.org' | |
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks so much for this!