2016-03-09 12:24:51 +00:00
|
|
|
class Neofetch < Formula
|
|
|
|
desc "fast, highly customisable system info script"
|
|
|
|
homepage "https://github.com/dylanaraps/neofetch"
|
2016-04-01 10:42:47 +00:00
|
|
|
url "https://github.com/dylanaraps/neofetch/archive/1.6.tar.gz"
|
|
|
|
sha256 "d48f581473fbfc37d250509f8dc2b10bc48df8eafef2429b2a48865d14c88092"
|
2016-03-09 12:24:51 +00:00
|
|
|
head "https://github.com/dylanaraps/neofetch.git"
|
|
|
|
|
2016-03-10 00:24:53 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
2016-03-17 06:19:00 +00:00
|
|
|
sha256 "e2c24863d38a41cb6f5d034cf8901dfc3e4bc13bc47db80759b61f05e399377b" => :el_capitan
|
|
|
|
sha256 "ee4dc42f9ec546f07121f4706df696c4da292fc644723745ad2e7f271a3143bb" => :yosemite
|
|
|
|
sha256 "ca7ebd89b1a2b1fc2036088bf3bdc08205ae5152f14ba3b1a81315dd8b39efb2" => :mavericks
|
2016-03-10 00:24:53 +00:00
|
|
|
end
|
|
|
|
|
2016-04-01 10:42:47 +00:00
|
|
|
depends_on "screenresolution" => :recommended
|
|
|
|
depends_on "imagemagick" => :recommended
|
|
|
|
|
2016-03-09 12:24:51 +00:00
|
|
|
def install
|
|
|
|
system "make", "install", "PREFIX=#{prefix}"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2016-04-01 10:42:47 +00:00
|
|
|
system "#{bin}/neofetch", "--test", "--config off"
|
2016-03-09 12:24:51 +00:00
|
|
|
end
|
|
|
|
end
|