blob: 27b6b6430c87e5fa1d836e3f77f243e475f66c2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
class Xsw < Formula
homepage "https://code.google.com/p/xsw/"
url "https://xsw.googlecode.com/files/xsw-0.3.5.tar.gz"
sha256 "d7f86047716d9c4d7b2d98543952d59ce871c7d11c63653f2e21a90bcd7a6085"
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
test do
system bin/"xsw", "-v"
end
end
|