blob: b468ee40450bb5df05ad0d43eba264bf223cd649 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 's-lang'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|