2009-12-20 22:42:33 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Libmagic < Formula
|
2010-07-22 17:47:30 +00:00
|
|
|
url 'ftp://ftp.astron.com/pub/file/file-5.04.tar.gz'
|
2009-12-20 22:42:33 +00:00
|
|
|
homepage 'http://www.darwinsys.com/file/'
|
2010-07-22 17:47:30 +00:00
|
|
|
md5 'accade81ff1cc774904b47c72c8aeea0'
|
2009-12-20 22:42:33 +00:00
|
|
|
|
2010-04-07 05:58:35 +00:00
|
|
|
keg_only <<-KEG.undent
|
|
|
|
This brew provides 'libmagic', but also installs a 'file' command which shadows the OS X-provided one.
|
|
|
|
KEG
|
2009-12-20 22:42:33 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make"
|
|
|
|
ENV.j1 # Remove some warnings during install
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|