sdl2_gfx 1.0.0
Closes Homebrew/homebrew#24970. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
parent
d455dfa053
commit
7f5ebc1358
1 changed files with 19 additions and 0 deletions
19
Formula/sdl2_gfx.rb
Normal file
19
Formula/sdl2_gfx.rb
Normal file
|
@ -0,0 +1,19 @@
|
|||
require 'formula'
|
||||
|
||||
class Sdl2Gfx < Formula
|
||||
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'
|
||||
sha1 '6b83f57a62a3d2a3850a56902a008d801c799ff8'
|
||||
|
||||
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
|
Loading…
Reference in a new issue