aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/screenfetch.rb
blob: 61d7cca593991b118d5699214664c5cc05f209ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
require "formula"

class Screenfetch < Formula
  homepage "https://github.com/KittyKatt/screenFetch"
  url "https://github.com/KittyKatt/screenFetch/archive/v3.6.2.tar.gz"
  sha1 "67de84f163056b6f5e8069cc870b2df715ee4dfe"
  head "git://git.silverirc.com/screenfetch.git", :shallow => false

  bottle do
    cellar :any
    sha1 "b033eceff0676b03c4cb88c8a9796fc71de25a11" => :mavericks
    sha1 "00865c22570be9c67aca83bf032e206681e9d187" => :mountain_lion
    sha1 "639dcfc9107f678d08d47e4ed1351a55898ff1f6" => :lion
  end

  def install
    bin.install "screenfetch-dev" => "screenfetch"
    man1.install "screenfetch.1"
  end

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