Summary: Secure encryption and decryption of files and streams Name: ccrypt Version: 1.10 Release: 1 Copyright: GNU General Public License Group: Applications/Cryptography Source0: http://ccrypt.sourceforge.net/download/%{name}-%{version}.tar.gz Patch0: %{name}-%{version}-aix.patch URL: http://ccrypt.sourceforge.net/ Packager: Michael Perzl BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root BuildRequires: make BuildRequires: gettext Requires: gettext %description ccrypt is a utility for encrypting and decrypting files and streams. It was designed to replace the standard unix crypt utility, which is notorious for using a very weak encryption algorithm. ccrypt is based on the Rijndael cipher, which is the U.S. government's chosen candidate for the Advanced Encryption Standard (AES). This cipher is believed to provide very strong security. %prep %setup -q %patch0 %build export CONFIG_SHELL=/usr/bin/ksh export CONFIG_ENV_ARGS=/usr/bin/ksh ./configure \ --prefix=%{_prefix} \ --mandir=%{_mandir} gmake %install [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} gmake DESTDIR=${RPM_BUILD_ROOT} install-strip /usr/bin/strip ${RPM_BUILD_ROOT}%{_bindir}/* || : cd ${RPM_BUILD_ROOT} mkdir -p usr/bin cd usr/bin ln -sf ../..%{_bindir}/* . %clean [ "${RPM_BUILD_ROOT}" != "/" ] && rm -rf ${RPM_BUILD_ROOT} %files %defattr(-,root,system,-) %doc doc/ccrypt.html %doc AUTHORS COPYING ChangeLog NEWS %doc README README-WIN doc/cypfaq01.txt %{_bindir}/* %{_mandir}/man1/* %{_datadir}/locale/*/*/* /usr/bin/* %changelog * Sat Oct 20 2012 Michael Perzl - 1.10-1 - updated to version 1.10 * Tue Jul 06 2010 Michael Perzl - 1.9-2 - removed dependency on gettext >= 0.17 * Mon Aug 31 2009 Michael Perzl - 1.9-1 - updated to version 1.9 * Fri Jun 19 2009 Michael Perzl - 1.8-1 - first version for AIX V5.1 and higher