]> git.pld-linux.org Git - packages/aircrack-ng.git/blame - aircrack-ng.spec
- upgradable release
[packages/aircrack-ng.git] / aircrack-ng.spec
CommitLineData
8ac129fd 1#
2# TODO:
3# - PLD it more
74b62dd0 4# - sbin/bin - change to bin?
41e6054e
SS
5# - finish ext_scripts bcond:
6# -- check python related BR and R
7# -- fix packaging python releated stuff
8# -- create subpackage for airoscript
9# -- fix directory for airoscript*.conf files
10# -- fix installation of airoscript desktop files
8ac129fd 11#
05fa9722
SS
12# Conditional build:
13%bcond_without sqlite # build without sqlite support
14%bcond_without pcre # build without pcre support
15%bcond_without experimental
9a781134 16%bcond_with ext_scripts # build with extra scripts (NFY)
05b22c16 17
a3476d37
JR
18%define subver rc4
19%define rel 1
8ac129fd 20Summary: Reliable 802.11 (wireless) sniffer and WEP/WPA-PSK key cracker
1b61970c 21Summary(pl.UTF-8): Pewny sniffer 802.11 (sieci bezprzewodowe) i łamacz kluczy WEP/WPA-PSK
8ac129fd 22Name: aircrack-ng
083b3040 23Version: 1.2
79ecacaf 24Release: 0.%{subver}.%{rel}
8ac129fd 25License: GPL
26Group: Applications/Networking
083b3040 27Source0: http://download.aircrack-ng.org/%{name}-%{version}-%{subver}.tar.gz
a3476d37 28# Source0-md5: 3bbc7d5035a98ec01e78774d05c3fcce
fdaae083 29URL: http://www.aircrack-ng.org/
b235dc0a 30Patch0: install.patch
f377f5bd 31Patch1: pldflags.patch
ee151981 32Patch2: install_besside_manual.patch
f8ad8da7 33BuildRequires: libnl-devel
8b33c69f 34BuildRequires: openssl-devel
05fa9722 35%{?with_pcre:BuildRequires: pcre-devel}
05b22c16 36BuildRequires: pkgconfig
05fa9722 37%{?with_sqlite:BuildRequires: sqlite3-devel}
05b22c16 38BuildRequires: zlib-devel
ca994d52
SS
39Requires: ethtool
40Requires: grep
41Requires: iw
42Requires: usbutils
8ac129fd 43BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
44
45%description
46aircrack-ng is a set of tools for auditing wireless networks. It's an
47enhanced/reborn version of aircrack. It consists of airodump-ng (an
48802.11 packet capture program), aireplay-ng (an 802.11 packet
49injection program), aircrack (static WEP and WPA-PSK cracking),
50airdecap-ng (decrypts WEP/WPA capture files), and some tools to handle
51capture files (merge, convert, etc.).
52
00504ee3
JR
53%description -l pl.UTF-8
54aircrack-ng jest zestawem narzędzi do audytów sieci bezprzewodowych.
55Jest to ulepszona/odnowiona wersja aircracka. Składa sie z programów
56airodump-ng (do przechwytywania pakietów 802.11), aireplay-ng (do
57wstrzykiwania pakietów 802.11), aircrack (do statycznego łamania WEP i
58WPA-PSK), airdecap-ng (do odszyfrowywania przechwyconych plików
59WEP/WPA) i paru narzędzi do obsługi plików przechwytów (merge,
fdaae083 60convert, etc.).
8ac129fd 61
62%prep
215cb537 63%setup -q -n %{name}-%{version}-%{subver}
b235dc0a 64%patch0 -p1
f377f5bd 65%patch1 -p1
ee151981 66%patch2 -p1
eaff7cfd 67
8ac129fd 68%build
5c6bb606 69%{__make} -j1 \
05fa9722
SS
70 %{?with_experimental: experimental=true} \
71 %{?with_ext_scripts: ext_scripts=true} \
72 %{?with_pcre: pcre=true} \
73 %{?with_sqlite: sqlite=true} \
eaff7cfd 74 CC="%{__cc}" \
a3476d37 75 PLDFLAGS="%{rpmcflags}"
8ac129fd 76
77%install
78rm -rf $RPM_BUILD_ROOT
fdaae083 79install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
8ac129fd 80
74b62dd0 81%{__make} install \
05fa9722
SS
82 %{?with_experimental: experimental=true} \
83 %{?with_ext_scripts: ext_scripts=true} \
84 %{?with_pcre: pcre=true} \
85 %{?with_sqlite: sqlite=true} \
74b62dd0 86 prefix=%{_prefix} \
87 DESTDIR=$RPM_BUILD_ROOT
8ac129fd 88
89%clean
90rm -rf $RPM_BUILD_ROOT
91
92%files
93%defattr(644,root,root,755)
69aba94a 94%doc AUTHORS ChangeLog README test patches
a1116914
SS
95%attr(755,root,root) %{_bindir}/aircrack-ng
96%attr(755,root,root) %{_bindir}/airdecap-ng
97%attr(755,root,root) %{_bindir}/airdecloak-ng
05fa9722 98%{?with_sqlite:%attr(755,root,root) %{_bindir}/airolib-ng}
a1116914
SS
99%attr(755,root,root) %{_bindir}/ivstools
100%attr(755,root,root) %{_bindir}/kstats
101%attr(755,root,root) %{_bindir}/makeivs-ng
102%attr(755,root,root) %{_bindir}/packetforge-ng
103%attr(755,root,root) %{_bindir}/wpaclean
104%attr(755,root,root) %{_sbindir}/airbase-ng
105%attr(755,root,root) %{_sbindir}/aireplay-ng
106%attr(755,root,root) %{_sbindir}/airmon-ng
107%attr(755,root,root) %{_sbindir}/airodump-ng
108%attr(755,root,root) %{_sbindir}/airodump-ng-oui-update
109%attr(755,root,root) %{_sbindir}/airserv-ng
110%attr(755,root,root) %{_sbindir}/airtun-ng
111%{_mandir}/man1/aircrack-ng.1*
112%{_mandir}/man1/airdecap-ng.1*
113%{_mandir}/man1/airdecloak-ng.1*
05fa9722 114%{?with_sqlite:%{_mandir}/man1/airolib-ng.1*}
a1116914
SS
115%{_mandir}/man1/besside-ng-crawler.1*
116%{_mandir}/man1/ivstools.1*
117%{_mandir}/man1/kstats.1*
118%{_mandir}/man1/makeivs-ng.1*
119%{_mandir}/man1/packetforge-ng.1*
120%{_mandir}/man1/wpaclean.1*
121%{_mandir}/man8/airbase-ng.8*
122%{_mandir}/man8/aireplay-ng.8*
123%{_mandir}/man8/airmon-ng.8*
124%{_mandir}/man8/airodump-ng-oui-update.8*
125%{_mandir}/man8/airodump-ng.8*
126%{_mandir}/man8/airserv-ng.8*
127%{_mandir}/man8/airtun-ng.8*
05fa9722
SS
128
129%if %{with experimental}
a3476d37 130%attr(755,root,root) %{_bindir}/besside-ng-crawler
05fa9722
SS
131%attr(755,root,root) %{_bindir}/buddy-ng
132%attr(755,root,root) %{_sbindir}/besside-ng
133%attr(755,root,root) %{_sbindir}/easside-ng
134%attr(755,root,root) %{_sbindir}/tkiptun-ng
135%attr(755,root,root) %{_sbindir}/wesside-ng
136%{_mandir}/man1/buddy-ng.1*
ee151981 137%{_mandir}/man8/besside-ng.8*
05fa9722
SS
138%{_mandir}/man8/easside-ng.8*
139%{_mandir}/man8/tkiptun-ng.8*
140%{_mandir}/man8/wesside-ng.8*
141%endif
This page took 0.095532 seconds and 4 git commands to generate.