diff options
| author | Adam Vandenberg | 2014-04-12 08:51:00 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-12 08:51:00 -0700 |
| commit | 826f794b69d6fa748c85e385954cbc866e2d6e9c (patch) | |
| tree | 1f2e5225f9b224e81588b3ebbebd2e2a35309970 /Library/Formula | |
| parent | 69958342557e391b1d6ba59f4625d0ae432e5107 (diff) | |
| download | homebrew-826f794b69d6fa748c85e385954cbc866e2d6e9c.tar.bz2 | |
redact augeas
Fixes #27495.
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/augeas.rb | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/Library/Formula/augeas.rb b/Library/Formula/augeas.rb deleted file mode 100644 index e37f2ec6b..000000000 --- a/Library/Formula/augeas.rb +++ /dev/null @@ -1,29 +0,0 @@ -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 |
