blob: 0617201c6db0b442417460b86f0090809c931363 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
require 'formula'
class SdlImage < Formula
homepage 'http://www.libsdl.org/projects/SDL_image'
url 'http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz'
sha1 '5e3e393d4e366638048bbb10d6a269ea3f4e4cf2'
depends_on 'pkg-config' => :build
depends_on 'sdl'
depends_on :x11
def options
[['--universal', 'Build universal binaries.']]
end
def install
ENV.universal_binary if ARGV.build_universal?
inreplace 'SDL_image.pc.in', '@prefix@', HOMEBREW_PREFIX
system "./configure", "--prefix=#{prefix}",
"--disable-dependency-tracking",
"--disable-sdltest"
system "make install"
end
end
|