]> git.pld-linux.org Git - packages/gen-auth.git/blame - gen-auth.spec
- drop obsolete and outdated manual inclusion of rpm macros
[packages/gen-auth.git] / gen-auth.spec
CommitLineData
62be52f7 1#
62be52f7 2Summary: SMTP authentication tool
3Summary(pl.UTF-8): Narzędzie do uwierzytelniania SMTP
4Name: gen-auth
5Version: 20060620.0
dbedace4 6Release: 1
7License: GPL v2+
62be52f7 8Group: Applications
dbedace4 9# based on http://jetmore.org/john/code/gen-auth
62be52f7 10Source0: %{name}.pl
11URL: http://jetmore.org/john/code/#gen-auth
12BuildRequires: perl-tools-pod
13BuildRequires: rpm-perlprov
2a134e32 14Suggests: perl-perldoc
62be52f7 15BuildArch: noarch
16BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
17
18%description
19gen-auth is a tool that generates and decodes SMTP authentication
20strings (PLAIN, LOGIN, CRAM-MD5, SPA).
21
22%description -l pl.UTF-8
23Narzędzie służące do generowania i dekodowania łancuchów
24uwierzytelniania SMTP. Obsługiwane standardy to PLAIN, LOGIN, CRAM-MD5
25i SPA.
26
27%prep
28%setup -q -c -T
29
30%build
31pod2man %SOURCE0 > gen-auth.1
dbedace4 32pod2text %SOURCE0 > gen-auth.txt
62be52f7 33
34%install
35rm -rf $RPM_BUILD_ROOT
36install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1}
37
38install %SOURCE0 $RPM_BUILD_ROOT%{_bindir}/%{name}
39install gen-auth.1 $RPM_BUILD_ROOT%{_mandir}/man1/gen-auth.1
40
41%clean
42rm -rf $RPM_BUILD_ROOT
43
44%files
45%defattr(644,root,root,755)
46%attr(755,root,root) %{_bindir}/%{name}
47%{_mandir}/man1/gen-auth.1*
dbedace4 48%doc gen-auth.txt
This page took 0.055483 seconds and 4 git commands to generate.