]> git.pld-linux.org Git - packages/FinalSolution.git/blame - FinalSolution.spec
- initial. works :D
[packages/FinalSolution.git] / FinalSolution.spec
CommitLineData
7de82271
PG
1Summary: A distrubuted, multithreaded, multiprotocol password cracker
2Name: FinalSolution
3Version: 0.2
4Release: 0.9
5License: GPL v2
6Group: Applications
7Source0: http://dl.sourceforge.net/finalsolution/%{name}-%{version}.tar.gz
8# Source0-md5: 229f1ef5852a75d5a48c07c67306416c
9URL: http://finalsolution.sourceforge.net/
10BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
11
12%description
13FinalSolution is a network administrator's tool to check the strength
14of network passwords. This is done by trying to crack the server you
15want to test. FinalSolution is multithreaded--i.e., it makes many
16simultaneous connections to the test server in order to optimize the
17bandwidth usage. It is also distributed, which means you can make the
18test from many computers to a single server. It could be useful in
19some cases when the test server has more bandwidth than you. Using
20distributed cracking helps optimize the bandwidth usage in the
21server's side.
22
23%prep
24%setup -q
25
26%build
27%{__make} \
28 CC=%{__cxx} \
29 CFLAGS="%{rpmcflags} -Wall -Wno-deprecated -c -Isrc/Include" \
30 DEBUG=""
31
32%install
33rm -rf $RPM_BUILD_ROOT
34install -d $RPM_BUILD_ROOT%{_bindir}
35
36install finalsolution $RPM_BUILD_ROOT%{_bindir}
37
38%clean
39rm -rf $RPM_BUILD_ROOT
40
41%files
42%defattr(644,root,root,755)
43%doc AUTHORS ChangeLog NEWS README TODO
44%attr(755,root,root) %{_bindir}/*
This page took 0.059323 seconds and 4 git commands to generate.