homebrew-core/Formula/hblock.rb

28 lines
1.3 KiB
Ruby

class Hblock < Formula
desc "Adblocker that creates a hosts file from multiple sources"
homepage "https://hblock.molinero.dev/"
url "https://github.com/hectorm/hblock/archive/v3.3.2.tar.gz"
sha256 "35bd4af1dbae3b57de6cede6c05f3d4ce25227b33a53358ef47c76a491304eb0"
license "MIT"
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "b408e7de0b8d0d3634deac27adcf630e303dcf03eee853a16af4b8b9d2f75714"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "b408e7de0b8d0d3634deac27adcf630e303dcf03eee853a16af4b8b9d2f75714"
sha256 cellar: :any_skip_relocation, monterey: "b408e7de0b8d0d3634deac27adcf630e303dcf03eee853a16af4b8b9d2f75714"
sha256 cellar: :any_skip_relocation, big_sur: "b408e7de0b8d0d3634deac27adcf630e303dcf03eee853a16af4b8b9d2f75714"
sha256 cellar: :any_skip_relocation, catalina: "b408e7de0b8d0d3634deac27adcf630e303dcf03eee853a16af4b8b9d2f75714"
sha256 cellar: :any_skip_relocation, x86_64_linux: "31d98acdc362571796f04dee5c4fca5ed0949a5cf7347c024de713764f68a3c1"
end
uses_from_macos "curl"
def install
system "make", "install", "prefix=#{prefix}", "bindir=#{bin}", "mandir=#{man}"
end
test do
output = shell_output("#{bin}/hblock -H none -F none -S none -A none -D none -qO-")
assert_match "Blocked domains:", output
end
end