From 68eb9b3e1a385cb4d6971a27415aabe5af9842c0 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 23:41:25 +0100 Subject: [PATCH] package created using the webbuild interface [release 0.13.3-1mamba;Mon May 07 2018] --- README.md | 2 ++ hiredis.spec | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 76 insertions(+) create mode 100644 hiredis.spec diff --git a/README.md b/README.md index 7115ec3..006675f 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,4 @@ # hiredis +Minimalistic C client for Redis >= 1.2. + diff --git a/hiredis.spec b/hiredis.spec new file mode 100644 index 0000000..cf7dc9d --- /dev/null +++ b/hiredis.spec @@ -0,0 +1,74 @@ +Name: hiredis +Version: 0.13.3 +Release: 1mamba +Summary: Minimalistic C client for Redis >= 1.2 +Group: System/Libraries +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: https://github.com/redis/hiredis.git +## GITSOURCE https://github.com/redis/hiredis.git v0.13.3 +Source: https://github.com/redis/hiredis.git/v%{version}/hiredis-%{version}.tar.bz2 +License: BSD +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +## AUTOBUILDREQ-END +Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release} +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Minimalistic C client for Redis >= 1.2. + +%package -n lib%{name} +Group: System/Libraries +Summary: Minimalistic C client for Redis >= 1.2 + +%description -n lib%{name} +Minimalistic C client for Redis >= 1.2. + +%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 +%make PREFIX=%{_prefix} LIBRARY_PATH=%{_lib} + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall PREFIX=%{_prefix} LIBRARY_PATH=%{_lib} + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%post -n lib%{name} -p /sbin/ldconfig +%postun -n lib%{name} -p /sbin/ldconfig + +%files -n lib%{name} +%defattr(-,root,root) +%{_libdir}/libhiredis.so.* +%doc COPYING + +%files -n lib%{name}-devel +%defattr(-,root,root) +%dir %{_includedir}/hiredis +%{_includedir}/hiredis/* +%{_libdir}/libhiredis.a +%{_libdir}/libhiredis.so +%{_libdir}/pkgconfig/hiredis.pc +%doc README.md + + +%changelog +* Mon May 07 2018 Silvan Calarco 0.13.3-1mamba +- package created using the webbuild interface