2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-30 17:39:24 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class SdlNet < Formula
|
2009-09-30 17:39:24 +00:00
|
|
|
homepage 'http://www.libsdl.org/projects/SDL_net/'
|
2012-07-02 08:12:41 +00:00
|
|
|
url 'http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.tar.gz'
|
|
|
|
sha1 'fd393059fef8d9925dc20662baa3b25e02b8405d'
|
2009-09-30 17:39:24 +00:00
|
|
|
|
2012-07-26 02:51:20 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-09-30 17:39:24 +00:00
|
|
|
depends_on 'sdl'
|
|
|
|
|
2012-03-30 09:01:38 +00:00
|
|
|
def options
|
|
|
|
[['--universal', 'Build universal binaries.']]
|
|
|
|
end
|
|
|
|
|
2009-09-30 17:39:24 +00:00
|
|
|
def install
|
2012-03-30 09:01:38 +00:00
|
|
|
ENV.universal_binary if ARGV.build_universal?
|
2010-04-07 05:58:35 +00:00
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2009-09-30 17:39:24 +00:00
|
|
|
"--disable-sdltest"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|