homebrew-core/Formula/pfetch.rb

30 lines
952 B
Ruby

class Pfetch < Formula
desc "Pretty system information tool written in POSIX sh"
homepage "https://github.com/dylanaraps/pfetch/"
url "https://github.com/dylanaraps/pfetch/archive/0.6.0.tar.gz"
sha256 "d1f611e61c1f8ae55bd14f8f6054d06fcb9a2d973095367c1626842db66b3182"
license "MIT"
head "https://github.com/dylanaraps/pfetch.git"
bottle do
cellar :any_skip_relocation
sha256 "f93914feee7f4e3cda77341c3bddf2cf51eb4b2aed01f6ace771db75078da570" => :catalina
sha256 "f93914feee7f4e3cda77341c3bddf2cf51eb4b2aed01f6ace771db75078da570" => :mojave
sha256 "f93914feee7f4e3cda77341c3bddf2cf51eb4b2aed01f6ace771db75078da570" => :high_sierra
end
def install
if build.head?
bin.mkdir
inreplace "Makefile", "install -Dm", "install -m"
system "make", "install", "PREFIX=#{prefix}"
else
bin.install "pfetch"
end
end
test do
assert_match "uptime", shell_output("#{bin}/pfetch")
end
end