package created using the webbuild interface [release 3.8.1-1mamba;Sat Feb 24 2024]

This commit is contained in:
Silvan Calarco 2024-02-24 20:09:58 +01:00
parent 3a3a9d5618
commit a18c287f3e
2 changed files with 63 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# libretls
libtls is a new TLS library, designed to make it easier to write foolproof applications.

61
libretls.spec Normal file
View File

@ -0,0 +1,61 @@
Name: libretls
Version: 3.8.1
Release: 1mamba
Summary: A new TLS library, designed to make it easier to write foolproof applications
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: https://git.causal.agency/libretls
Source: https://causal.agency/libretls/libretls-%{version}.tar.gz
License: ISC, BSD, MIT
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: libopenssl-devel
## AUTOBUILDREQ-END
%description
libtls is a new TLS library, designed to make it easier to write foolproof applications.
%package devel
Group: Development/Libraries
Summary: Development files for %{name}
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
%description devel
This package contains libraries and header files for developing applications that use %{name}.
%debug_package
%prep
%setup -q
%build
%configure
%make
%install
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%makeinstall
%clean
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_libdir}/libtls.so.*
%files devel
%defattr(-,root,root)
%{_includedir}/tls.h
%{_libdir}/libtls.a
%{_libdir}/libtls.so
%{_libdir}/pkgconfig/libtls.pc
%{_mandir}/man3/tls_*.3*
%changelog
* Sat Feb 24 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 3.8.1-1mamba
- package created using the webbuild interface