diff options
| author | Charlie Sharpsteen | 2014-04-14 22:20:02 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2014-04-15 18:51:02 -0700 |
| commit | c91a25d8d3b13b2b3bc302766a91161307f6deae (patch) | |
| tree | ad077774df132c55e8faff9a527307d2ecbc43cf /Library/Formula/augeas.rb | |
| parent | a1beb5162f93fb5cd635bf3e07f98b92209edf61 (diff) | |
| download | homebrew-c91a25d8d3b13b2b3bc302766a91161307f6deae.tar.bz2 | |
augeas 1.2.0
Closes #28412.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/augeas.rb')
| -rw-r--r-- | Library/Formula/augeas.rb | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/Library/Formula/augeas.rb b/Library/Formula/augeas.rb index e37f2ec6b..67a891232 100644 --- a/Library/Formula/augeas.rb +++ b/Library/Formula/augeas.rb @@ -2,14 +2,31 @@ require 'formula' class Augeas < Formula homepage 'http://augeas.net' - url 'http://download.augeas.net/augeas-1.0.0.tar.gz' - sha1 '5d0bc5738cc77ad4731f9406fb8dceb08826bba9' + url 'http://download.augeas.net/augeas-1.2.0.tar.gz' + sha1 'ab63548ae5462d7b3dc90e74311b8e566ba22485' + + head do + url 'https://github.com/hercules-team/augeas.git' + + depends_on :autoconf + depends_on :automake + depends_on :libtool + depends_on 'bison' => :build + end 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' + + system './autogen.sh' + end system "./configure", "--disable-debug", "--disable-dependency-tracking", "--prefix=#{prefix}" |
