aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorChristian Romney2011-04-19 06:53:32 -0400
committerAdam Vandenberg2011-09-01 10:24:30 -0700
commit86f3dc996abecc4692d155ee74c2dafb1f0b429e (patch)
treefb8db74651b42149ce88fd35bf1d1a8fc8f33c8f /Library
parentd66c9a6cf7da010f5d8ce374e365ad840d782252 (diff)
downloadhomebrew-86f3dc996abecc4692d155ee74c2dafb1f0b429e.tar.bz2
xml-coreutils 0.8a
command line programs to manipulate XML documents Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/xml-coreutils.rb15
1 files changed, 15 insertions, 0 deletions
diff --git a/Library/Formula/xml-coreutils.rb b/Library/Formula/xml-coreutils.rb
new file mode 100644
index 000000000..e5ef33e7a
--- /dev/null
+++ b/Library/Formula/xml-coreutils.rb
@@ -0,0 +1,15 @@
+require 'formula'
+
+class XmlCoreutils < Formula
+ url 'http://www.lbreyer.com/gpl/xml-coreutils-0.8a.tar.gz'
+ homepage 'http://www.lbreyer.com/xml-coreutils.html'
+ md5 '2a5fa1f1feffad6be2f8af7661408268'
+
+ depends_on 'slang'
+
+ def install
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end