3643e60e27
Closes Homebrew/homebrew#27160. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
15 lines
305 B
Ruby
15 lines
305 B
Ruby
require 'formula'
|
|
|
|
class Archey < Formula
|
|
homepage 'http://obihann.github.io/archey-osx/'
|
|
url 'https://github.com/obihann/archey-osx/archive/1.3.tar.gz'
|
|
sha1 '8fbc2a939d39bee1741af758d87cd54fb01472fa'
|
|
|
|
def install
|
|
bin.install 'bin/archey'
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/archey"
|
|
end
|
|
end
|