2014-06-03 07:36:50 +00:00
|
|
|
class Archey < Formula
|
2015-12-19 05:21:12 +00:00
|
|
|
desc "Graphical system information display for OS X"
|
2015-08-03 12:55:31 +00:00
|
|
|
homepage "https://obihann.github.io/archey-osx/"
|
2016-04-04 22:31:41 +00:00
|
|
|
url "https://github.com/obihann/archey-osx/archive/1.6.0.tar.gz"
|
|
|
|
sha256 "0f0ffcf8c5f07610b98f0351dcb38bb8419001f40906d5dc4bfd28ef12dbd0f8"
|
2015-08-03 12:55:31 +00:00
|
|
|
head "https://github.com/obihann/archey-osx.git"
|
2014-06-03 07:36:50 +00:00
|
|
|
|
2015-10-20 07:14:59 +00:00
|
|
|
bottle :unneeded
|
|
|
|
|
2014-06-03 07:36:50 +00:00
|
|
|
def install
|
2015-08-03 12:55:31 +00:00
|
|
|
bin.install "bin/archey"
|
2014-06-03 07:36:50 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
2015-12-19 05:21:12 +00:00
|
|
|
assert_match "Archey OS X 1", shell_output("#{bin}/archey --help")
|
2014-06-03 07:36:50 +00:00
|
|
|
end
|
|
|
|
end
|