2009-12-20 22:42:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libmagic < Formula
|
|
|
|
homepage 'http://www.darwinsys.com/file/'
|
2013-05-07 13:15:08 +00:00
|
|
|
url 'ftp://ftp.astron.com/pub/file/file-5.14.tar.gz'
|
|
|
|
mirror 'http://fossies.org/unix/misc/file-5.14.tar.gz'
|
|
|
|
sha1 '064c8f17a5f7ae1e336a9285131e046d3b2d04d7'
|
2009-12-20 22:42:33 +00:00
|
|
|
|
2013-05-20 17:50:44 +00:00
|
|
|
option :universal
|
|
|
|
|
2013-01-29 15:56:56 +00:00
|
|
|
# Fixed upstream, should be in next release
|
|
|
|
# See http://bugs.gw.com/view.php?id=230
|
|
|
|
def patches; DATA; end if MacOS.version < :lion
|
|
|
|
|
2009-12-20 22:42:33 +00:00
|
|
|
def install
|
2013-05-20 17:50:44 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
|
2012-02-15 07:21:57 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-fsect-man5"
|
2009-12-20 22:42:33 +00:00
|
|
|
system "make install"
|
2011-09-02 11:31:58 +00:00
|
|
|
|
2012-05-20 20:27:39 +00:00
|
|
|
# Don't dupe this system utility
|
2011-09-02 11:31:58 +00:00
|
|
|
rm bin/"file"
|
|
|
|
rm man1/"file.1"
|
2009-12-20 22:42:33 +00:00
|
|
|
end
|
|
|
|
end
|
2013-01-29 15:56:56 +00:00
|
|
|
|
|
|
|
__END__
|
|
|
|
diff --git a/src/getline.c b/src/getline.c
|
|
|
|
index e3c41c4..74c314e 100644
|
|
|
|
--- a/src/getline.c
|
|
|
|
+++ b/src/getline.c
|
|
|
|
@@ -76,7 +76,7 @@ getdelim(char **buf, size_t *bufsiz, int delimiter, FILE *fp)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
-ssize_t
|
|
|
|
+public ssize_t
|
|
|
|
getline(char **buf, size_t *bufsiz, FILE *fp)
|
|
|
|
{
|
|
|
|
return getdelim(buf, bufsiz, '\n', fp);
|