59 lines
1.9 KiB
Ruby
59 lines
1.9 KiB
Ruby
# "File" is a reserved class name
|
|
class FileFormula < Formula
|
|
desc "Utility to determine file types"
|
|
homepage "https://www.darwinsys.com/file/"
|
|
url "ftp://ftp.astron.com/pub/file/file-5.35.tar.gz"
|
|
mirror "https://fossies.org/linux/misc/file-5.35.tar.gz"
|
|
sha256 "30c45e817440779be7aac523a905b123cba2a6ed0bf4f5439e1e99ba940b5546"
|
|
head "https://github.com/file/file.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "414a7ea4620970ec73ac089629e244e878072d4ac9b279be52c42e5756bd9220" => :mojave
|
|
sha256 "661aec7c6c1fbd510f03faf696cde94d55d5ea691346078dc947c18a78ceb312" => :high_sierra
|
|
sha256 "a0c67d9fdfbf0deb40a81be2cc7fce0196ea919f3496550fa8ff679cd47705f4" => :sierra
|
|
end
|
|
|
|
keg_only :provided_by_macos
|
|
|
|
depends_on "libmagic"
|
|
|
|
patch :DATA
|
|
|
|
def install
|
|
ENV.prepend "LDFLAGS", "-L#{Formula["libmagic"].opt_lib} -lmagic"
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make", "install-exec"
|
|
system "make", "-C", "doc", "install-man1"
|
|
rm_r lib
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/file", test_fixtures("test.mp3")
|
|
end
|
|
end
|
|
|
|
__END__
|
|
diff --git a/src/Makefile.in b/src/Makefile.in
|
|
index c096c71..583a0ba 100644
|
|
--- a/src/Makefile.in
|
|
+++ b/src/Makefile.in
|
|
@@ -115,7 +115,6 @@ libmagic_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
|
|
PROGRAMS = $(bin_PROGRAMS)
|
|
am_file_OBJECTS = file.$(OBJEXT) seccomp.$(OBJEXT)
|
|
file_OBJECTS = $(am_file_OBJECTS)
|
|
-file_DEPENDENCIES = libmagic.la
|
|
AM_V_P = $(am__v_P_@AM_V@)
|
|
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
|
|
am__v_P_0 = false
|
|
@@ -311,7 +310,7 @@ libmagic_la_LDFLAGS = -no-undefined -version-info 1:0:0
|
|
@MINGW_TRUE@MINGWLIBS = -lgnurx -lshlwapi
|
|
libmagic_la_LIBADD = $(LTLIBOBJS) $(MINGWLIBS)
|
|
file_SOURCES = file.c seccomp.c
|
|
-file_LDADD = libmagic.la
|
|
+file_LDADD = $(LDADD)
|
|
CLEANFILES = magic.h
|
|
EXTRA_DIST = magic.h.in
|
|
HDR = $(top_srcdir)/src/magic.h.in
|