45 lines
966 B
RPMSpec
45 lines
966 B
RPMSpec
%global debug_package %{nil}
|
|
|
|
Name: bcrypt
|
|
Version: 1.1
|
|
Release: 1
|
|
Summary: Bcrypt is a cross platform file encryption utility
|
|
License: BSD
|
|
URL: http://bcrypt.sourceforge.net/
|
|
Source0: http://bcrypt.sourceforge.net/%{name}-%{version}.tar.gz
|
|
|
|
Patch0 : bcrypt-change-man-install-path.patch
|
|
|
|
BuildRequires: zlib-devel gcc
|
|
|
|
%description
|
|
Bcrypt is a cross platform file encryption utility. Encrypted files are portable across all supported operating systems and processors. Passphrases must be between 8 and 56 characters and are hashed internally to a 448 bit key. However, all characters supplied are significant. The stronger your passphrase, the more secure your data.
|
|
|
|
|
|
%prep
|
|
%setup -q -n %{name}-%{version}/
|
|
%patch0 -p1
|
|
|
|
%build
|
|
%make_build
|
|
|
|
%install
|
|
%{__make} install PREFIX="%{buildroot}%{_prefix}"
|
|
|
|
%pre
|
|
%preun
|
|
%post
|
|
%postun
|
|
|
|
%check
|
|
|
|
%files
|
|
%license LICENSE
|
|
%{_bindir}/*
|
|
%{_mandir}/*
|
|
|
|
%changelog
|
|
* Sun Mar 29 2020 Wei Xiong <myeuler@163.com>
|
|
- Package init
|
|
|