]> git.pld-linux.org Git - packages/base64.git/blob - base64.spec
5a6825c2ea219a93f1dafa4a5bc633f513c26efc
[packages/base64.git] / base64.spec
1 Summary:        Encode and decode base64 files
2 Summary(pl):    Kodowanie i dekodowanie plików base64
3 Name:           base64
4 Version:        1.4
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:  77f0ff05296e1bd446ff02cea279309a
10 URL:            http://www.fourmilab.ch/webtools/base64/
11 BuildRequires:  autoconf
12 BuildRoot:      %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
13
14 %description
15 base64 is a command line utility which encodes and decodes files in
16 this format. It can be used within a pipeline as an encoding or
17 decoding filter, and is most commonly used in this manner as part of
18 an automated mail processing system.
19
20 %description -l pl
21 base64 to narzêdzie konsolowe s³u¿±ce do kodowania i dekodowania
22 plików w tym formacie. Mo¿e byæ u¿ywane w potokach jako filtr
23 (de)koduj±cy i jest zwykle w ten sposób u¿ywane w systemach
24 automatycznego przetwarzania poczty.
25
26 %prep
27 %setup -q
28
29 %build
30 %{__autoconf}
31 %configure
32 %{__make}
33
34 %install
35 rm -rf $RPM_BUILD_ROOT
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.png $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 log.txt
48 %attr(755,root,root) %{_bindir}/*
49 %{_mandir}/man1/*
50 %{_pixmapsdir}/*
This page took 0.07539 seconds and 2 git commands to generate.