blob: 28415010c3f63f79528324eb952299bf3dfb0f5c (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | require 'formula'
class SdlRtf < Formula
  homepage 'http://www.libsdl.org/projects/SDL_rtf/'
  url 'http://www.libsdl.org/projects/SDL_rtf/release/SDL_rtf-0.1.0.tar.gz'
  sha1 'daf749fd87b1d76cd43880c9c5b61c9741847197'
  head 'http://hg.libsdl.org/SDL_rtf', :using => :hg
  depends_on 'sdl'
  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end
 |