blob: 792bf97b90b959616e6e8952e47fa78991301b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
require 'formula'
class Xsw < Formula
homepage 'http://code.google.com/p/xsw/'
url 'https://xsw.googlecode.com/files/xsw-0.3.5.tar.gz'
sha1 'fe4cffcc8bcd3149f4ecbf2011ad78a8ab7f1dd4'
depends_on 'sdl'
depends_on 'sdl_ttf'
depends_on 'sdl_image'
depends_on 'sdl_gfx'
def install
system "./configure", "--prefix=#{prefix}"
system "make install"
end
end
|