diff options
| author | Dominyk Tiller | 2014-10-16 05:52:19 +0100 |
|---|---|---|
| committer | Jack Nagel | 2014-10-19 01:07:36 -0500 |
| commit | 623194855e4083d7dd0120147d85eea8a08d938f (patch) | |
| tree | a283c74ffd1d9ed32e1957ba4bfd01036c818ecc | |
| parent | b6ab38b05b58be3b3e72fb69885dfb93da14b25b (diff) | |
| download | homebrew-623194855e4083d7dd0120147d85eea8a08d938f.tar.bz2 | |
aircrack-ng: openssl dep
This taps the system openssl, so this PR fixes that. I’ve also added a
couple of lines of explanation about our inability to update this
package due to #29450, so perhaps we want to stop shipping this at all
at some point, but for now, this secures things on the ssl front. The
build docs also state that it should be installed with the latest and
greatest sqlite, so I’ve specified a dependency on that.
Closes #33205.
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
| -rw-r--r-- | Library/Formula/aircrack-ng.rb | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/Library/Formula/aircrack-ng.rb b/Library/Formula/aircrack-ng.rb index df058bd75..469913fa3 100644 --- a/Library/Formula/aircrack-ng.rb +++ b/Library/Formula/aircrack-ng.rb @@ -1,9 +1,16 @@ -require 'formula' +require "formula" class AircrackNg < Formula - homepage 'http://aircrack-ng.org/' - url 'http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz' - sha1 '16eed1a8cf06eb8274ae382150b56589b23adf77' + homepage "http://aircrack-ng.org/" + # We can't update this due to linux-only dependencies in >1.1. + # See https://github.com/Homebrew/homebrew/issues/29450 + url "http://download.aircrack-ng.org/aircrack-ng-1.1.tar.gz" + sha1 "16eed1a8cf06eb8274ae382150b56589b23adf77" + revision 1 + + depends_on "pkg-config" => :build + depends_on "sqlite" + depends_on "openssl" # Remove root requirement from OUI update script. See: # https://github.com/Homebrew/homebrew/pull/12755 |
