74c83fa9f6
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
483 B
Ruby
15 lines
483 B
Ruby
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
|