homebrew-core/Formula/libnxml.rb

25 lines
737 B
Ruby
Raw Normal View History

2012-11-11 20:55:17 +00:00
require 'formula'
class Libnxml < Formula
homepage 'http://www.autistici.org/bakunin/libnxml/'
url 'http://www.autistici.org/bakunin/libnxml/libnxml-0.18.3.tar.gz'
sha1 '2bcb17ea01aa953d0f8cbc116e025bb837bec4aa'
2014-07-03 21:00:24 +00:00
bottle do
cellar :any
2014-10-20 08:39:12 +00:00
revision 1
sha1 "7cb66793cd407da933402efdba8fef4c0a6df5e9" => :yosemite
sha1 "ebc5579cac15cc564df904594fb1e773bb90e747" => :mavericks
sha1 "656ec4f843adb2ab16fc30ea708fb5abccd76490" => :mountain_lion
2014-07-03 21:00:24 +00:00
end
2012-11-11 20:55:17 +00:00
depends_on 'curl' if MacOS.version < :lion # needs >= v7.20.1
def install
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end