49 lines
1.9 KiB
Ruby
49 lines
1.9 KiB
Ruby
class Cracklib < Formula
|
|
desc "LibCrack password checking library"
|
|
homepage "https://github.com/cracklib/cracklib"
|
|
url "https://github.com/cracklib/cracklib/releases/download/cracklib-2.9.6/cracklib-2.9.6.tar.gz"
|
|
sha256 "17cf76943de272fd579ed831a1fd85339b393f8d00bf9e0d17c91e972f583343"
|
|
|
|
bottle do
|
|
rebuild 1
|
|
sha256 "a21962259717ab187dc477310b0e68b28449135839312f7c632f0e46414efcf1" => :mojave
|
|
sha256 "52c1e0acde52e27553ca3884dba490596ebc4a45019181bbb355ed9bad50e778" => :high_sierra
|
|
sha256 "e2cfe716fb290d4dd26558290707596146e15ca8da510b38897c128f961779b6" => :sierra
|
|
sha256 "12665f56731ad7a8c56143d5f263b99e7a8484cbb0e2f22b955978f63e724138" => :el_capitan
|
|
end
|
|
|
|
depends_on "gettext"
|
|
|
|
resource "cracklib-words" do
|
|
url "https://github.com/cracklib/cracklib/releases/download/cracklib-2.9.6/cracklib-words-2.9.6.bz2"
|
|
sha256 "460307bb9b46dfd5068d62178285ac2f70279e64b968972fe96f5ed07adc1a77"
|
|
end
|
|
|
|
# Upstream commit from 25 Aug 2016 "Apply patch to fix CVE-2016-6318"
|
|
patch :p2 do
|
|
url "https://github.com/cracklib/cracklib/commit/47e5dec.patch?full_index=1"
|
|
sha256 "7b3604d503208365951038b04990eef24b8ef90ce845fd84e2d2ab88a9a4f56b"
|
|
end
|
|
|
|
def install
|
|
system "./configure", "--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--prefix=#{prefix}",
|
|
"--sbindir=#{bin}",
|
|
"--without-python",
|
|
"--with-default-dict=#{var}/cracklib/cracklib-words"
|
|
system "make", "install"
|
|
|
|
share.install resource("cracklib-words")
|
|
end
|
|
|
|
def post_install
|
|
(var/"cracklib").mkpath
|
|
cp share/"cracklib-words-#{version}", var/"cracklib/cracklib-words"
|
|
system "#{bin}/cracklib-packer < #{var}/cracklib/cracklib-words"
|
|
end
|
|
|
|
test do
|
|
assert_match /password: it is based on a dictionary word/, pipe_output("#{bin}/cracklib-check", "password", 0)
|
|
end
|
|
end
|