This repository has been archived on 2024-03-20. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
rpmbuild/base64/base64-1.3-2.te.spec

65 lines
1.7 KiB
RPMSpec

%define name base64
%define version 1.3
%define release 2.te
Summary: Encode and decode base64 files
Name: %{name}
Version: %{version}
Release: %{release}
License: Public Domain
Group: Networking/Mail
URL: http://www.fourmilab.ch/webtools/base64/
Source: %{name}-%{version}.tar.bz2
BuildRoot: %{_tmppath}/%{name}-buildroot
%description
base64 is a command line utility which encodes and decodes
files in this format. It can be used within a pipeline as
an encoding or decoding filter, and is most commonly used
in this manner as part of an automated mail processing
system.
%prep
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
%setup -q
%build
%configure
%{__make}
%install
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
install -d %{buildroot}%{_bindir}
install -d %{buildroot}%{_mandir}/man1
install -m755 base64 %{buildroot}%{_bindir}/
install -m755 base64.1 %{buildroot}%{_mandir}/man1/
%clean
[ "%{buildroot}" != "/" ] && rm -rf %{buildroot}
%files
%defattr(-,root,root)
%doc README b64.gif base64.pdf index.html rfc1341.*
%{_bindir}/base64
%{_mandir}/man1/base64.1*
%changelog
* Wed Nov 17 2004 Troy Engel <tengel@sonic.net> 1.3-2.te
- update to spec, FC3 rebuild
* Fri Nov 7 2003 Troy Engel <tengel@sonic.net> 1.3-1rh9
- made into generic RedHat RPM from Mandrake
* Thu Jan 16 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.3-4mdk
- build release
* Sun Aug 4 2002 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.3-3mdk
- rebuilt with gcc-3.2
* Wed Jun 12 2002 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.3-2mdk
- fix Requires (to null)
* Wed Jun 12 2002 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.3-1mdk
- initial cooker contrib