Added formula for smpeg

master
Adam Vandenberg 2010-03-14 11:10:07 -07:00
parent 1f2432e9f7
commit 794eb917ac
1 changed files with 19 additions and 0 deletions

19
Formula/smpeg.rb Normal file
View File

@ -0,0 +1,19 @@
require 'formula'
class Smpeg <Formula
head 'svn://svn.icculus.org/smpeg/trunk'
homepage 'http://icculus.org/smpeg/'
depends_on 'sdl'
def install
system "./autogen.sh"
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-gtktest",
"--disable-sdltest"
system "make"
lib.install Dir[".libs/*.dylib"]
bin.install ".libs/plaympeg"
end
end