homebrew-core/Formula/libmagic.rb

59 lines
1.5 KiB
Ruby

require 'formula'
class Libmagic < Formula
homepage 'http://www.darwinsys.com/file/'
url 'ftp://ftp.astron.com/pub/file/file-5.17.tar.gz'
mirror 'http://fossies.org/unix/misc/file-5.17.tar.gz'
sha1 'f7e837a0d3e4f40a02ffe7da5e146b967448e0d8'
bottle do
revision 1
sha1 "e39a611cc0351b0f633b96ca7fc8834b8575c4e9" => :mavericks
sha1 "049bf4c884b40b53a0e2db2dd3a7c6a4fba2e46d" => :mountain_lion
sha1 "6cb0d8979255f0d7b53665e547e4941b79b7dd81" => :lion
end
option :universal
depends_on :python => :optional
# Fixed upstream, should be in next release
# See http://bugs.gw.com/view.php?id=230
patch :DATA if MacOS.version < :lion
def install
ENV.universal_binary if build.universal?
# Clean up "src/magic.h" as per http://bugs.gw.com/view.php?id=330
rm "src/magic.h"
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--enable-fsect-man5"
system "make install"
cd "python" do
system "python", "setup.py", "install", "--prefix=#{prefix}"
end
# Don't dupe this system utility
rm bin/"file"
rm man1/"file.1"
end
end
__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);