aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/archey.rb
blob: ae3928c5bf2c2336e99b9719a8167152b8b4979c (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.2.tar.gz'
  sha1 '61fe422a37f07a1c24762244a355bf992452dae4'

  def install
    bin.install 'bin/archey'
  end

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