2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-30 05:22:49 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Tintin < Formula
|
2009-09-30 05:22:49 +00:00
|
|
|
homepage 'http://tintin.sf.net'
|
2012-02-10 05:34:01 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/tintin/TinTin%2B%2B%20Source%20Code/2.00.8/tintin-2.00.8.tar.gz'
|
|
|
|
sha256 'e364a7fa7ed35a2d166a081cce4682d5fe2481ee9ce72c6a409903d097e1ae45'
|
2010-07-17 17:43:07 +00:00
|
|
|
|
|
|
|
depends_on 'pcre'
|
|
|
|
|
2009-09-30 05:22:49 +00:00
|
|
|
def install
|
2012-02-24 22:51:33 +00:00
|
|
|
# find Homebrew's libpcre
|
|
|
|
ENV.append 'LDFLAGS', "-L#{HOMEBREW_PREFIX}/lib"
|
|
|
|
|
|
|
|
cd 'src' do
|
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make", "CFLAGS=#{ENV.cflags}",
|
|
|
|
"INCS=#{ENV.cppflags}",
|
|
|
|
"LDFLAGS=#{ENV.ldflags}",
|
|
|
|
"install"
|
|
|
|
end
|
2009-09-30 05:22:49 +00:00
|
|
|
end
|
|
|
|
end
|