2010-02-04 18:10:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Fltk < Formula
|
2010-02-04 18:10:25 +00:00
|
|
|
homepage 'http://www.fltk.org/'
|
2012-04-11 19:37:29 +00:00
|
|
|
url 'http://ftp2.easysw.com/pub/fltk/1.3.0/fltk-1.3.0-source.tar.gz'
|
2012-01-23 04:32:15 +00:00
|
|
|
md5 '44d5d7ba06afdd36ea17da6b4b703ca3'
|
|
|
|
|
|
|
|
devel do
|
2012-04-11 19:37:29 +00:00
|
|
|
url 'http://ftp.easysw.com/pub/fltk/snapshots/fltk-1.3.x-r9327.tar.bz2'
|
|
|
|
md5 '3205e5da58069ec7a1e487e6941cccd4'
|
|
|
|
version '1.3.x-r9327'
|
2011-02-18 02:11:34 +00:00
|
|
|
end
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2011-08-29 19:06:21 +00:00
|
|
|
depends_on 'jpeg'
|
|
|
|
|
2012-04-11 19:37:18 +00:00
|
|
|
fails_with :clang do
|
|
|
|
build 318
|
|
|
|
cause "http://llvm.org/bugs/show_bug.cgi?id=10338"
|
|
|
|
end
|
|
|
|
|
2010-02-04 18:10:25 +00:00
|
|
|
def install
|
2011-08-29 19:06:21 +00:00
|
|
|
ENV.libpng
|
2010-02-04 18:10:25 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}", "--enable-threads"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|