0cfb74692f
OS X ships with iconv. glib failed to detect it, and this snowballed into a few formulas requiring a superfluous duplicate install of libiconv. All of the formulas in this commit compile without the libiconv dependency. jn: The libiconv shipped with 10.5, 10.6, and 10.7 is version 1.11, so there shouldn't be any cases of "10.x needs a newer libiconv but 10.y does not". In any case, we'll wait a week or so just in case any weird issues crop up, and if not, then we can remove the libiconv formula and blacklist it. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
14 lines
400 B
Ruby
14 lines
400 B
Ruby
require 'formula'
|
|
|
|
class Tin < Formula
|
|
homepage 'http://www.tin.org'
|
|
url 'ftp://ftp.tin.org/pub/news/clients/tin/stable/tin-2.0.1.tar.gz'
|
|
md5 'd05622db1712a78a2b92aa27904befc2'
|
|
|
|
def install
|
|
ENV.enable_warnings
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make build"
|
|
system "make install"
|
|
end
|
|
end
|