]> git.pld-linux.org Git - packages/john.git/blob - john.spec
- /usr/dict/linux.words -> /usr/share/dict/words
[packages/john.git] / john.spec
1 Summary:        Password cracker
2 Summary(pl):    £amacz hase³
3 Name:           john
4 Version:        1.6
5 Release:        4
6 License:        GPL
7 Group:          Utilities/System
8 Group(pl):      Narzêdzia/System
9 Source0:        http://www.openwall.com/john//%{name}-%{version}.tar.gz
10 Patch0:         %{name}-%{version}.PLD.diff
11 Patch1:         %{name}-%{version}.ini.diff
12 Patch2:         %{name}-%{version}.makefile.diff
13 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
14
15 %description
16 John the Ripper is a password cracker, currently available for UNIX,
17 DOS, WinNT/Win95. Its primary purpose is to detect weak UNIX
18 passwords. It has been tested with Linux x86/Alpha/SPARC, FreeBSD x86,
19 OpenBSD x86, Solaris 2.x SPARC and x86, Digital UNIX, AIX, HP-UX, and
20 IRIX.
21
22 %description -l pl
23 John The Ripper jest "³amaczem" hase³ dostêpnym dla systemów UNIX,
24 DOS, WinNT/Win95. G³ównym jego zadaniem jest wykrywanie "s³abych"
25 hase³.
26
27 %prep
28 %setup -q
29 %patch0 -p1
30 %patch1 -p1
31 %patch2 -p1
32
33 %build
34 cd src
35 # Hmm. I don't know what is in /proc/cpuinfo on other processors than Intel MMX
36 if grep -q "MMX" /proc/cpuinfo; then
37         make OPT="$RPM_OPT_FLAGS" linux-x86-mmx-elf
38 elif grep -q "K6" /proc/cpuinfo; then
39         make OPT="$RPM_OPT_FLAGS" linux-x86-k6-elf
40 elif grep -q "Alpha" /proc/cpuinfo; then
41         make OPT="$RPM_OPT_FLAGS" linux-alpha
42 elif grep -q "SPARC" /proc/cpuinfo; then
43         make OPT="$RPM_OPT_FLAGS" linux-sparc
44 else
45         make OPT="$RPM_OPT_FLAGS" linux-x86-any-elf
46 fi
47         
48 %install
49 rm -rf $RPM_BUILD_ROOT
50 install -d $RPM_BUILD_ROOT{%{_bindir},%{_libdir}/john}
51 install run/*.chr $RPM_BUILD_ROOT%{_libdir}/john
52 install run/john.ini $RPM_BUILD_ROOT%{_libdir}/john
53 install run/john $RPM_BUILD_ROOT%{_bindir}
54
55 gzip -9nf doc/* run/mailer
56
57 cd $RPM_BUILD_ROOT%{_bindir}
58 ln -s john unafs; ln -s john unique; ln -s john unshadow
59
60 %clean
61 rm -rf $RPM_BUILD_ROOT
62
63 %files
64 %defattr(644,root,root,755)
65 %doc doc/* run/mailer.gz
66 %attr(755,root,root) %{_bindir}/*
67
68 %dir %{_libdir}/john
69 %{_libdir}/john/*
This page took 0.065155 seconds and 3 git commands to generate.