aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/moon-buggy.rb
blob: 679377f1d7370348c7a80a038093d15657b61368 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'formula'

class MoonBuggy < Formula
  homepage 'http://www.seehuhn.de/pages/moon-buggy'
  url 'http://m.seehuhn.de/programs/moon-buggy-1.0.tar.gz'
  md5 '4da97ea40eca686f6f8b164d8b927e38'

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

  def test
    system "moon-buggy"
  end
end