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

class Regldg < Formula
  homepage 'http://regldg.com'
  url 'http://regldg.com/regldg-1.0.0.tar.gz'
  sha1 '1a355c1898f90b6a725e2ddc39b4daa2ce83b856'

  def install
    system "make"
    bin.install "regldg"
  end

  test do
    system "#{bin}/regldg", "test"
  end
end