aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chgems.rb
blob: f23e04a8a4c28f027d85f25046fd68f9e76e966b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
require "formula"

class Chgems < Formula
  homepage "https://github.com/postmodern/chgems#readme"
  url "https://github.com/postmodern/chgems/archive/v0.3.2.tar.gz"
  sha1 "73775a7d57e61ca895ae11cebc028f1ab8150977"
  head "https://github.com/postmodern/chgems.git"

  def install
    system "make", "install", "PREFIX=#{prefix}"
  end
end