homebrew-core/Formula/sdl_net.rb
BrewTestBot 95884bae22 Formula files style updates.
Closes Homebrew/homebrew#42407.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2015-08-03 14:21:42 +01:00

19 lines
626 B
Ruby

class SdlNet < Formula
desc "Sample cross-platform networking library"
homepage "http://www.libsdl.org/projects/SDL_net/"
url "http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.tar.gz"
sha256 "5f4a7a8bb884f793c278ac3f3713be41980c5eedccecff0260411347714facb4"
option :universal
depends_on "pkg-config" => :build
depends_on "sdl"
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
system "make", "install"
end
end