homebrew-core/Formula/sdl2_gfx.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

18 lines
600 B
Ruby

class Sdl2Gfx < Formula
desc "SDL2 graphics drawing primitives and other support functions"
homepage "http://www.ferzkopp.net/joomla/content/view/19/14/"
url "http://www.ferzkopp.net/Software/SDL2_gfx/SDL2_gfx-1.0.0.tar.gz"
sha256 "9843924d46eacbabba685a239cf2284b948766a20ef2caa48cb18462a3295caf"
depends_on "sdl2"
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
system "make", "install"
end
end