homebrew-core/Formula/fltk.rb
Adam Vandenberg 05a3fff82c fltk 1.3.2
Also remove devel release, since apparently it moves to CMake.

Tested compiling pixie and octave.

Closes Homebrew/homebrew#15799 - but will review an updated pull request.
2013-01-18 11:58:15 -08:00

20 lines
453 B
Ruby

require 'formula'
class Fltk < Formula
homepage 'http://www.fltk.org/'
url 'http://ftp.easysw.com/pub/fltk/1.3.2/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