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

class Xmlcatmgr < Formula
  homepage 'http://xmlcatmgr.sourceforge.net'
  url 'https://downloads.sourceforge.net/project/xmlcatmgr/xmlcatmgr/2.2/xmlcatmgr-2.2.tar.gz'
  sha1 '1761eb72234a14d3d919ce3ccb0c0550421bf2e8'

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