FLTK 1.1.10

FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Tim Sally 2010-02-04 12:10:25 -06:00 committed by Adam Vandenberg
parent 75c36412b0
commit 20db4aca76

12
Formula/fltk.rb Normal file
View file

@ -0,0 +1,12 @@
require 'formula'
class Fltk <Formula
url 'http://ftp2.easysw.com/pub/fltk/1.1.10/fltk-1.1.10-source.tar.gz'
homepage 'http://www.fltk.org/'
md5 'e6378a76ca1ef073bcb092df1ef3ba55'
def install
system "./configure", "--prefix=#{prefix}", "--enable-threads"
system "make install"
end
end