From 1365da857ec182d48cc4315cde20ba87c55c16d9 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 20:34:51 +0100 Subject: [PATCH] package created using the webbuild interface [release 1.28.1-1mamba;Fri Nov 24 2023] --- README.md | 2 ++ asio.spec | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 55 insertions(+) create mode 100644 asio.spec diff --git a/README.md b/README.md index 845caeb..7f75c61 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # asio +Cross-platform C++ library for ASynchronous network I/O. + diff --git a/asio.spec b/asio.spec new file mode 100644 index 0000000..aa64184 --- /dev/null +++ b/asio.spec @@ -0,0 +1,53 @@ +Name: asio +Version: 1.28.1 +Release: 1mamba +Summary: Cross-platform C++ library for ASynchronous network I/O +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://think-async.com/Asio/ +Source: https://sourceforge.net/projects/asio/files/asio/%{version}%20%28Stable%29/asio-%{version}.tar.bz2 +License: Boost Software License +## AUTOBUILDREQ-BEGIN +## AUTOBUILDREQ-END + +%description +Cross-platform C++ library for ASynchronous network I/O. + +%package -n lib%{name}-devel +Group: Development/Libraries +Summary: Cross-platform C++ library for ASynchronous network I/O +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 +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%files -n lib%{name}-devel +%defattr(-,root,root) +%{_includedir}/asio.hpp +%dir %{_includedir}/asio +%{_includedir}/asio/* +%{_libdir}/pkgconfig/asio.pc +%doc COPYING README + +%changelog +* Fri Nov 24 2023 Silvan Calarco 1.28.1-1mamba +- package created using the webbuild interface