package created using the webbuild interface [release 2.17.3-1mamba;Wed Mar 24 2021]
This commit is contained in:
parent
32f2fe973b
commit
16bb9a031e
@ -1,2 +1,4 @@
|
||||
# botan
|
||||
|
||||
Botan (Japanese for peony flower) is a C++ cryptography library released under the permissive Simplified BSD license.
|
||||
|
||||
|
89
botan.spec
Normal file
89
botan.spec
Normal file
@ -0,0 +1,89 @@
|
||||
Name: botan
|
||||
Version: 2.17.3
|
||||
Release: 1mamba
|
||||
Summary: A C++ cryptography library released under the permissive Simplified BSD license
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||
URL: https://github.com/randombit/botan
|
||||
Source: https://github.com/randombit/botan.git/%{version}/botan-%{version}.tar.bz2
|
||||
License: BSD
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
BuildRequires: libgcc
|
||||
BuildRequires: libstdc++6-devel
|
||||
## AUTOBUILDREQ-END
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description
|
||||
Botan (Japanese for peony flower) is a C++ cryptography library released under the permissive Simplified BSD license.
|
||||
|
||||
%package -n lib%{name}
|
||||
Group: System/Libraries
|
||||
Summary: Shared libraries for %{name}
|
||||
|
||||
%description -n lib%{name}
|
||||
This package contains shared libraries for %{name}.
|
||||
|
||||
%package -n lib%{name}-devel
|
||||
Group: Development/Libraries
|
||||
Summary: Development files for %{name}
|
||||
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
Requires: pkg-config
|
||||
|
||||
%description -n lib%{name}-devel
|
||||
This package contains libraries and header files for developing applications that use %{name}.
|
||||
|
||||
%debug_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%{__python3} configure.py \
|
||||
--prefix=%{_prefix} \
|
||||
--libdir=%{_libdir}
|
||||
|
||||
%make
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -n lib%{name} -p /sbin/ldconfig
|
||||
%postun -n lib%{name} -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_bindir}/botan
|
||||
%{_mandir}/man1/botan.1*
|
||||
|
||||
%files -n lib%{name}
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/libbotan-2.so.*
|
||||
%{python3_sitearch}/botan2.py
|
||||
%doc license.txt
|
||||
|
||||
%files -n lib%{name}-devel
|
||||
%defattr(-,root,root)
|
||||
%dir %{_includedir}/botan-2
|
||||
%dir %{_includedir}/botan-2/botan
|
||||
%{_includedir}/botan-2/botan/*.h
|
||||
%{_libdir}/libbotan-2.a
|
||||
%{_libdir}/libbotan-2.so
|
||||
%{_libdir}/pkgconfig/botan-2.pc
|
||||
%dir %{_docdir}/botan-%{version}
|
||||
%{_docdir}/botan-%{version}/*.txt
|
||||
%dir %{_docdir}/botan-%{version}/handbook
|
||||
%dir %{_docdir}/botan-%{version}/handbook/.doctrees
|
||||
%{_docdir}/botan-%{version}/handbook/*
|
||||
%{_docdir}/botan-%{version}/handbook/.doctrees/*
|
||||
%{_docdir}/botan-%{version}/handbook/.buildinfo
|
||||
|
||||
%changelog
|
||||
* Wed Mar 24 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 2.17.3-1mamba
|
||||
- package created using the webbuild interface
|
Loading…
Reference in New Issue
Block a user