aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/augeas.rb
blob: e37f2ec6b0bee8ced5a6332e0dcc25b6d9522c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
require 'formula'

class Augeas < Formula
  homepage 'http://augeas.net'
  url 'http://download.augeas.net/augeas-1.0.0.tar.gz'
  sha1 '5d0bc5738cc77ad4731f9406fb8dceb08826bba9'

  depends_on 'pkg-config' => :build
  depends_on 'libxml2'
  depends_on 'readline'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"

    # libfa example program doesn't compile cleanly on OSX, so skip it
    inreplace 'Makefile' do |s|
      s.change_make_var! "SUBDIRS", "gnulib/lib src gnulib/tests tests man doc"
    end

    system "make install"
  end

  def caveats; <<-EOS.undent
    Lenses have been installed to:
      #{HOMEBREW_PREFIX}/share/augeas/lenses/dist
    EOS
  end
end