Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

neofetch 1.4 (new formula) #49909

Closed
wants to merge 3 commits into from
Closed
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Library/Formula/neofetch.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
class Neofetch < Formula
desc "fast, highly customisable system info script"
homepage "https://github.com/dylanaraps/neofetch"
url "https://github.com/dylanaraps/neofetch/archive/1.4.tar.gz"
sha256 "b0bda1ac5c3fa4357c6c2157767bcbf08d0e231e3d5e15c4408490f1c3175756"
head "https://github.com/dylanaraps/neofetch.git"

def install
system "PREFIX=#{prefix} make install"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please separate each argument: system "make", "install", "PREFIX=#{prefix}".

end

test do
system "neofetch"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please use "#{bin}/neofetch" instead of "neofetch".

end
end