summaryrefslogtreecommitdiff
path: root/homebrew/rcm.rb.in
blob: 03a99b758a67aaaf7630afc67c18ba0bba559042 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
class Rcm < Formula
  desc "management suite for dotfiles"
  homepage "https://thoughtbot.github.io/rcm"
  url "https://thoughtbot.github.io/@PACKAGE@/dist/@DIST_ARCHIVES@"
  sha256 "@DIST_SHA@"

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end

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