aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/xmlcatmgr.rb
diff options
context:
space:
mode:
authortheirix2012-08-07 21:10:47 +0400
committerAdam Vandenberg2012-08-28 11:14:16 -0700
commitb4069513947dfd571ee5c0f31c5ee7797c9730d8 (patch)
tree445b8e507a688e15c499f934eb4644ac49d96e71 /Library/Formula/xmlcatmgr.rb
parent466cb5eaa15be075a3aa21e650cb65251c522cfa (diff)
downloadhomebrew-b4069513947dfd571ee5c0f31c5ee7797c9730d8.tar.bz2
xmlcatmgr 2.2
Closes #14025. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/xmlcatmgr.rb')
-rw-r--r--Library/Formula/xmlcatmgr.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/xmlcatmgr.rb b/Library/Formula/xmlcatmgr.rb
new file mode 100644
index 000000000..c733abb9a
--- /dev/null
+++ b/Library/Formula/xmlcatmgr.rb
@@ -0,0 +1,15 @@
+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