xml-coreutils 0.8a

command line programs to manipulate XML documents

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Christian Romney 2011-04-19 06:53:32 -04:00 committed by Adam Vandenberg
parent 7490649a20
commit 38a8a98a65

15
Formula/xml-coreutils.rb Normal file
View file

@ -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