Mednafen 0.8.Drc1
A portable multi-system emulator with many advanced features. Signed-off-by: Adam Vandenberg <flangy@gmail.com> * Tweaked slighty.
This commit is contained in:
parent
a8ab994c7a
commit
b7b74dbdb4
1 changed files with 24 additions and 0 deletions
24
Formula/mednafen.rb
Normal file
24
Formula/mednafen.rb
Normal file
|
@ -0,0 +1,24 @@
|
|||
require 'formula'
|
||||
|
||||
class Mednafen <Formula
|
||||
homepage 'http://mednafen.sourceforge.net/'
|
||||
url 'http://forum.fobby.net/index.php?t=getfile&id=192'
|
||||
md5 'f50882095931a44df828e1254ed1a461'
|
||||
version '0.8.D-rc1'
|
||||
|
||||
depends_on 'pkg-config'
|
||||
depends_on 'sdl'
|
||||
depends_on 'sdl_net'
|
||||
depends_on 'libcdio'
|
||||
depends_on 'libsndfile'
|
||||
|
||||
def install
|
||||
# someone with more C++ juice than me can undertake to patch the
|
||||
# crasher in Blip_Synth<8, 1>::offset_resampled that happens with
|
||||
# even minimal optimizations turned on (in LLVM or GCC 4.2)
|
||||
ENV.no_optimization
|
||||
|
||||
system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
|
||||
system "make install"
|
||||
end
|
||||
end
|
Loading…
Reference in a new issue