aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/archey.rb
blob: cd81ad283afea3154013f7ca64d0c9065c3d909f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
require 'formula'

class Archey < Formula
  homepage 'http://obihann.github.io/archey-osx/'
  url 'https://github.com/obihann/archey-osx/archive/1.4.tar.gz'
  sha1 '545896848444cd77b0c2cad50d5477f824ecf72f'

  def install
    bin.install 'bin/archey'
  end

  test do
    system "#{bin}/archey"
  end
end