Commit 154be43b authored by Damian Montero's avatar Damian Montero Committed by GitHub

Merge pull request #1055 from jam7/update/aircrack_ng

Change aircrack_ng to make it configure itself correctly.
parents ee15703c 706123b7
...@@ -3,7 +3,7 @@ require 'package' ...@@ -3,7 +3,7 @@ require 'package'
class Aircrack_ng < Package class Aircrack_ng < Package
description 'Key cracker for the 802.11 WEP and WPA-PSK protocols.' description 'Key cracker for the 802.11 WEP and WPA-PSK protocols.'
homepage 'https://www.aircrack-ng.org' homepage 'https://www.aircrack-ng.org'
version '1.2-rc4' version '1.2-rc4-1'
source_url 'http://download.aircrack-ng.org/aircrack-ng-1.2-rc4.tar.gz' source_url 'http://download.aircrack-ng.org/aircrack-ng-1.2-rc4.tar.gz'
source_sha256 'd93ac16aade5b4d37ab8cdf6ce4b855835096ccf83deb65ffdeff6d666eaff36' source_sha256 'd93ac16aade5b4d37ab8cdf6ce4b855835096ccf83deb65ffdeff6d666eaff36'
...@@ -16,9 +16,8 @@ class Aircrack_ng < Package ...@@ -16,9 +16,8 @@ class Aircrack_ng < Package
depends_on "rfkill" depends_on "rfkill"
def self.build def self.build
system "make", # Need to specify TMPDIR to run automatic configuration tool correctly
"sqlite=true", system "TMPDIR=/usr/local/tmp make sqlite=true experimental=true"
"experimental=true"
end end
def self.install def self.install
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment