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'
|
2013-02-02 02:14:04 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/tintin/TinTin%2B%2B%20Source%20Code/2.00.9/tintin-2.00.9.tar.gz'
|
|
|
|
sha256 'cafeee9b60de39d957def5782fb4f8cb29a05af69dc96d3e5807c2d3fb541275'
|
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
|