Added formalu for libmpeg2

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
master
Peter Kristensen 2010-06-27 20:18:56 +02:00 committed by Adam Vandenberg
parent d2741dba24
commit 575dabc319
1 changed files with 14 additions and 0 deletions

14
Formula/libmpeg2.rb Normal file
View File

@ -0,0 +1,14 @@
require 'formula'
class Libmpeg2 <Formula
url 'http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz'
homepage 'http://libmpeg2.sourceforge.net/'
md5 '0f92c7454e58379b4a5a378485bbd8ef'
depends_on 'sdl'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}"
system "make install"
end
end