blob: 03fe38ffdfc5f645d477ec813bb019d95b790c17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  | 
require 'formula'
class Fltk < Formula
  homepage 'http://www.fltk.org/'
  url 'http://fossies.org/linux/misc/fltk-1.3.2-source.tar.gz'
  sha1 '25071d6bb81cc136a449825bfd574094b48f07fb'
  depends_on :libpng
  depends_on 'jpeg'
  fails_with :clang do
    build 318
    cause "http://llvm.org/bugs/show_bug.cgi?id=10338"
  end
  def install
    system "./configure", "--prefix=#{prefix}", "--enable-threads"
    system "make install"
  end
end
  |