]> git.pld-linux.org Git - packages/base64.git/blob - base64.spec
- from Grzegorz 'Knivre' Zebrowski xan at interia pl
[packages/base64.git] / base64.spec
1 Summary:        Encode and decode base64 files
2 Summary(pl):    (De)szyfruje pliki base64
3 Name:           base64
4 Version:        1.3
5 Release:        1
6 License:        Public Domain
7 Group:          Applications
8 Source0:        http://www.fourmilab.ch/webtools/%{name}/%{name}-%{version}.tar.gz
9 # Source0-md5:  66d81725ba4d03227af2ce3792e50d5d
10 URL:            http://www.fourmilab.ch/webtools/base64
11 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
12
13 %description
14 base64 is a command line utility which encodes and decodes files in
15 this format. It can be used within a pipeline as an encoding or
16 decoding filter, and is most commonly used in this manner as part of
17 an automated mail processing system.
18
19 %description -l pl
20 base64 to narzêdzie konsolowe s³u¿±ce do szyfrowania i deszyfrowania
21 plików w tym formacie. Mo¿e byæ u¿ywane w potokach jako filtr
22 (de)szyfruj±cy i jest w ten sposób u¿ywany w systemach automatycznego
23 przetwarzania poczty.
24
25 %prep
26 %setup -q
27
28 %build
29 %{__autoconf}
30 %configure
31 %{__make}
32
33 %install
34 rm -rf $RPM_BUILD_ROOT
35
36 install -d $RPM_BUILD_ROOT{%{_bindir},%{_mandir}/man1,%{_pixmapsdir}}
37
38 install base64 $RPM_BUILD_ROOT%{_bindir}
39 install base64.1 $RPM_BUILD_ROOT%{_mandir}/man1
40 install b64.gif $RPM_BUILD_ROOT%{_pixmapsdir}
41
42 %clean
43 rm -rf $RPM_BUILD_ROOT
44
45 %files
46 %defattr(644,root,root,755)
47 %doc README index.html rfc1341* base64.pdf
48 %attr(755,root,root) %{_bindir}/*
49 %{_mandir}/man1/*
50 %{_pixmapsdir}/*
This page took 0.068602 seconds and 4 git commands to generate.