homebrew-core/Formula/xmlcatmgr.rb
theirix f226f5b511 xmlcatmgr 2.2
Closes Homebrew/homebrew#14025.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-08-28 11:14:16 -07:00

15 lines
482 B
Ruby

require 'formula'
class Xmlcatmgr < Formula
homepage 'http://xmlcatmgr.sourceforge.net'
url 'http://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