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

26 lines
847 B
Ruby

class SdlGfx < Formula
desc "Graphics drawing primitives and other support functions"
homepage "http://www.ferzkopp.net/joomla/content/view/19/14/"
url "http://www.ferzkopp.net/Software/SDL_gfx-2.0/SDL_gfx-2.0.24.tar.gz"
sha256 "30ad38c3e17586e5212ce4a43955adf26463e69a24bb241f152493da28d59118"
bottle do
cellar :any
revision 1
sha1 "6c70b7a9048bc066ecbb3c037c3a1a0fe2d3166a" => :yosemite
sha1 "364758460ad6f2cfc83c58d5fc8e793688cd9862" => :mavericks
sha1 "342e8a64a908f0e39ba6a1d8318ed111679067a1" => :mountain_lion
end
depends_on "sdl"
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-sdltest"
system "make", "install"
end
end