aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/mikmod.rb
blob: 0c553de93c07502e1958909eaed6b48f18902cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Mikmod < Formula
  homepage 'http://mikmod.raphnet.net/'
  url 'http://mikmod.shlomifish.org/files/mikmod-3.2.2.tar.gz'
  sha1 '37640492c0ba3aebc277a251e1d012119e2edee8'

  depends_on 'libmikmod'

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

  def test
    system "#{bin}/mikmod", "-V"
  end
end