File libscrypt.spec of Package libscrypt
%global _hardened_build 1
Name: libscrypt
Version: 1.21
Release: 1%{?dist}
Summary: Library that implements the secure password hashing function "scrypt"
License: BSD
URL: http://www.lolware.net/libscrypt.html
Source0: https://github.com/technion/libscrypt/archive/v%{version}.tar.gz
BuildRequires: coreutils
BuildRequires: findutils
BuildRequires: gcc
BuildRequires: make
%description
This is a library that implements the secure password hashing function "scrypt".
%package devel
Summary: Development files for %{name}
Requires: %{name}%{?_isa} = %{version}-%{release}
%description devel
The %{name}-devel package contains libraries and header files for
developing applications that use %{name}.
%prep
%setup -q
%build
export CFLAGS="%{optflags}"
%{?el6:export CFLAGS="$CFLAGS -fPIC"}
make %{?_smp_mflags}
%install
make install \
DESTDIR=$RPM_BUILD_ROOT \
PREFIX=%{_prefix} \
LIBDIR=%{_libdir}
find $RPM_BUILD_ROOT -name '*.*a' -exec rm -f {} ';'
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%{!?_licensedir:%global license %doc}
%license LICENSE
%{_libdir}/*.so.*
%doc README.md
%files devel
%{_includedir}/*
%{_libdir}/*.so
%check
make check
%changelog
* Sat Jan 16 2016 Denis Fateyev <denis@fateyev.com> - 1.21-1
- Update to 1.21 release
- Spec modernize and cleanup
* Wed Jun 17 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
* Mon Dec 1 2014 Joshua Small <technion@lolware.net> 1.20-1
- Bugfixes involving large N, failure return values
* Tue May 6 2014 Joshua Small <technion@lolware.net> 1.19-1
- Code improvements, courtesy of Coverity
* Tue Mar 11 2014 Joshua Small <technion@lolware.net> 1.18-1
- Documentation corrections
* Sun Feb 02 2014 Joshua Small <technion@lolware.net> 1.15-1
- More portable b64 libraries implemented.
* Tue Sep 24 2013 Dan HorĂ¡k <dan[at]danny.cz> - 1.14-2
- big endian fix
* Thu Sep 12 2013 Joshua Small <technion@lolware.net> - 1.14-1
- Fixed length bug reported by shawjef3
* Fri Aug 02 2013 Joshua Small <technion@lolware.net> - 1.13-1
- Initial version of the library