aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2014-11-09 06:08:20 +0000
committerMike McQuaid2014-11-09 16:12:57 +0000
commitea419464837299af310941c279a2cd1aa07a6823 (patch)
tree13de89c750ff878f925cb7fa172123dcd0517a28 /Library/Formula
parentbe57435143ae5e897b2c3667bc1650d32097ec18 (diff)
downloadhomebrew-ea419464837299af310941c279a2cd1aa07a6823.tar.bz2
augeas 1.3.0
Version bump. Closes #34037. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/augeas.rb28
1 files changed, 14 insertions, 14 deletions
diff --git a/Library/Formula/augeas.rb b/Library/Formula/augeas.rb
index 67a891232..29d93a7e8 100644
--- a/Library/Formula/augeas.rb
+++ b/Library/Formula/augeas.rb
@@ -1,41 +1,41 @@
-require 'formula'
+require "formula"
class Augeas < Formula
- homepage 'http://augeas.net'
- url 'http://download.augeas.net/augeas-1.2.0.tar.gz'
- sha1 'ab63548ae5462d7b3dc90e74311b8e566ba22485'
+ homepage "http://augeas.net"
+ url "http://download.augeas.net/augeas-1.3.0.tar.gz"
+ sha1 "052694bc84e3b8246dd32808b0e0e8c41c3de40b"
head do
- url 'https://github.com/hercules-team/augeas.git'
+ url "https://github.com/hercules-team/augeas.git"
depends_on :autoconf
depends_on :automake
depends_on :libtool
- depends_on 'bison' => :build
+ depends_on "bison" => :build
end
- depends_on 'pkg-config' => :build
- depends_on 'libxml2'
- depends_on 'readline'
+ depends_on "pkg-config" => :build
+ depends_on "libxml2"
+ depends_on "readline"
def install
if build.head?
# The bootstrap script run by autogen needs to check the state of the
# gnulib submodule.
- ln_s cached_download + '.git', '.git'
- ln_s cached_download + '.gnulib/.git', '.gnulib/.git'
+ ln_s cached_download + ".git", ".git"
+ ln_s cached_download + ".gnulib/.git", ".gnulib/.git"
- system './autogen.sh'
+ system "./autogen.sh"
end
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|
+ inreplace "Makefile" do |s|
s.change_make_var! "SUBDIRS", "gnulib/lib src gnulib/tests tests man doc"
end
- system "make install"
+ system "make", "install"
end
def caveats; <<-EOS.undent