audit fixes: F 02: findutils - fmdiff
Closes Homebrew/homebrew#46437. Signed-off-by: Andrew Janke <andrew@apjanke.net>
This commit is contained in:
parent
685b1a67bb
commit
bba8c5c7cb
8 changed files with 14 additions and 16 deletions
|
@ -21,7 +21,8 @@ class Findutils < Formula
|
|||
args = ["--prefix=#{prefix}",
|
||||
"--localstatedir=#{var}/locate",
|
||||
"--disable-dependency-tracking",
|
||||
"--disable-debug"]
|
||||
"--disable-debug",
|
||||
]
|
||||
args << "--program-prefix=g" if build.without? "default-names"
|
||||
|
||||
system "./configure", *args
|
||||
|
|
|
@ -1,14 +1,13 @@
|
|||
class Fizsh < Formula
|
||||
desc "Fish-like front end for ZSH"
|
||||
homepage "https://github.com/zsh-users/fizsh"
|
||||
head "https://github.com/zsh-users/fizsh", :using => :git
|
||||
|
||||
stable do
|
||||
url "https://downloads.sourceforge.net/project/fizsh/fizsh-1.0.8.tar.gz"
|
||||
sha256 "3d17933c4773532209f9771221ec1dbb33d11fa4e0fbccc506a38d1b4f2359c7"
|
||||
end
|
||||
|
||||
head "https://github.com/zsh-users/fizsh", :using => :git
|
||||
|
||||
bottle do
|
||||
cellar :any
|
||||
sha256 "b85d71ce36f57763382353e521c43ceef4598bc571564d0a55797d036d7ab045" => :yosemite
|
||||
|
|
|
@ -4,13 +4,6 @@ class Flac < Formula
|
|||
url "http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz"
|
||||
sha256 "4773c0099dba767d963fd92143263be338c48702172e8754b9bc5103efe1c56c"
|
||||
|
||||
head do
|
||||
url "https://git.xiph.org/flac.git"
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "automake" => :build
|
||||
depends_on "libtool" => :build
|
||||
end
|
||||
|
||||
bottle do
|
||||
cellar :any
|
||||
sha256 "ba87fb6e7919f334b04745d5c075f5ae12a5374b3b7edd0514cc62d9f8ad28c8" => :el_capitan
|
||||
|
@ -19,6 +12,13 @@ class Flac < Formula
|
|||
sha256 "738f8ba2670b9eff4c0ff794813a86841934f6791ce393d9833f1cef56cb8e25" => :mountain_lion
|
||||
end
|
||||
|
||||
head do
|
||||
url "https://git.xiph.org/flac.git"
|
||||
depends_on "autoconf" => :build
|
||||
depends_on "automake" => :build
|
||||
depends_on "libtool" => :build
|
||||
end
|
||||
|
||||
option :universal
|
||||
|
||||
depends_on "pkg-config" => :build
|
||||
|
|
|
@ -2,8 +2,8 @@ class Flasm < Formula
|
|||
desc "Flash command-line assembler and disassembler"
|
||||
homepage "http://www.nowrap.de/flasm.html"
|
||||
url "http://www.nowrap.de/download/flasm16src.zip"
|
||||
sha256 "df1273a506e2479cf95775197f5b7fa94e29fe1e0aae5aa190ed5bbebc4be5c6"
|
||||
version "1.62"
|
||||
sha256 "df1273a506e2479cf95775197f5b7fa94e29fe1e0aae5aa190ed5bbebc4be5c6"
|
||||
|
||||
bottle do
|
||||
cellar :any
|
||||
|
|
|
@ -3,6 +3,7 @@ class Flatbuffers < Formula
|
|||
homepage "https://google.github.io/flatbuffers"
|
||||
url "https://github.com/google/flatbuffers/archive/v1.2.0.tar.gz"
|
||||
sha256 "a6cacab3cbcc99e2308d8aa328bff060ba19061ce6eb23be85eccb63fb3446b5"
|
||||
head "https://github.com/google/flatbuffers.git"
|
||||
|
||||
bottle do
|
||||
cellar :any_skip_relocation
|
||||
|
@ -11,8 +12,6 @@ class Flatbuffers < Formula
|
|||
sha256 "be12580517a5994d5a4886b3c5c9dd97702f1ae2da3a395bdb4d9cb291e50a02" => :mavericks
|
||||
end
|
||||
|
||||
head "https://github.com/google/flatbuffers.git"
|
||||
|
||||
depends_on "cmake" => :build
|
||||
|
||||
def install
|
||||
|
|
|
@ -21,6 +21,6 @@ class Flickcurl < Formula
|
|||
|
||||
test do
|
||||
output = shell_output("#{bin}/flickcurl -h 2>&1", 1)
|
||||
assert output.include? "flickcurl: Configuration file"
|
||||
assert_match "flickcurl: Configuration file", output
|
||||
end
|
||||
end
|
||||
|
|
|
@ -23,7 +23,7 @@ class Flow < Formula
|
|||
end
|
||||
|
||||
test do
|
||||
system "#{bin}/flow init #{testpath}"
|
||||
system "#{bin}/flow", "init", testpath
|
||||
(testpath/"test.js").write <<-EOS.undent
|
||||
/* @flow */
|
||||
var x: string = 123;
|
||||
|
|
|
@ -11,7 +11,6 @@ class Fmdiff < Formula
|
|||
sha256 "af27122257b358518d38a86d8bdc1242b17e7f1fe6e5e08dc7b7a8a3b1151148" => :mavericks
|
||||
end
|
||||
|
||||
|
||||
def install
|
||||
system "make"
|
||||
system "make", "DESTDIR=#{bin}", "install"
|
||||
|
|
Loading…
Reference in a new issue