diff options
| author | David Christenson | 2015-02-21 21:59:44 -0700 |
|---|---|---|
| committer | Mike McQuaid | 2015-02-22 15:44:43 +0000 |
| commit | 997fde5653b1993046e9dbf892269e35d8708ed9 (patch) | |
| tree | 56ca9cf611279ac1dc488f7ac5bff422a2e1944b /Library | |
| parent | c33fa8b17a91303b083f746a438f7c98da29b72c (diff) | |
| download | homebrew-997fde5653b1993046e9dbf892269e35d8708ed9.tar.bz2 | |
neon 0.30.1
Update to latest stable release, specify that it's only provided by
Lion and earlier, change single quotes to double, change format of
`make` command, remove `require 'formula'`.
Closes #37047.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/neon.rb | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/Library/Formula/neon.rb b/Library/Formula/neon.rb index c95aa5ac3..c8b54ad0a 100644 --- a/Library/Formula/neon.rb +++ b/Library/Formula/neon.rb @@ -1,10 +1,7 @@ -require 'formula' - class Neon < Formula - homepage 'http://www.webdav.org/neon/' - url 'http://www.webdav.org/neon/neon-0.30.0.tar.gz' - sha1 '9e6297945226f90d66258b7ee05f757ff5cea10a' - revision 1 + homepage "http://www.webdav.org/neon/" + url "http://www.webdav.org/neon/neon-0.30.1.tar.gz" + sha1 "efec2a6f17d9bd2323345320e3067349ddc9cf79" bottle do cellar :any @@ -14,12 +11,12 @@ class Neon < Formula sha1 "2273ce25ead7be557b71101303cfda284364cd7b" => :mountain_lion end - keg_only :provided_by_osx + keg_only :provided_pre_mountain_lion option :universal - depends_on 'pkg-config' => :build - depends_on 'openssl' + depends_on "pkg-config" => :build + depends_on "openssl" # Configure switch unconditionally adds the -no-cpp-precomp switch # to CPPFLAGS, which is an obsolete Apple-only switch that breaks @@ -37,13 +34,13 @@ class Neon < Formula "--disable-nls", "--with-ssl=openssl", "--with-libs=#{Formula["openssl"].opt_prefix}" - system "make install" + system "make", "install" end end __END__ diff --git a/configure b/configure -index b0a7908..a0f2ceb 100755 +index d7702d2..5c3b5a3 100755 --- a/configure +++ b/configure @@ -4224,7 +4224,6 @@ fi |
