homebrew-core/Formula/sdl_net.rb
2015-10-04 01:41:29 +01:00

18 lines
618 B
Ruby

class SdlNet < Formula
desc "Sample cross-platform networking library"
homepage "https://www.libsdl.org/projects/SDL_net/release-1.2.html"
url "https://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