58 lines
1.8 KiB
Ruby
58 lines
1.8 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.36.tar.gz"
|
|
sha256 "fb608290c0fd2405a8f63e5717abf6d03e22e183fb21884413d1edd918184379"
|
|
head "https://github.com/file/file.git"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "b26d1dc9e339e8f8c238ee25baf66f7b5153696662ff23cec1fb0a3e61e9844e" => :mojave
|
|
sha256 "9a479081d4805d2bc22190f9ae388a138fbb33696796b60e63638759ee1845e4" => :high_sierra
|
|
sha256 "2592d8a9c0c9838135bec5af4084bade0900f10d57f2beb7d9cdf567152fab47" => :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
|