package created using the webbuild interface [release 3.6.0-1mamba;Sun Dec 28 2014]

This commit is contained in:
Silvan Calarco 2024-01-06 00:17:10 +01:00
parent d1d0b1ccb5
commit bf8ac19977
2 changed files with 82 additions and 0 deletions

View File

@ -1,2 +1,4 @@
# jemalloc
jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.

80
jemalloc.spec Normal file
View File

@ -0,0 +1,80 @@
Name: jemalloc
Version: 3.6.0
Release: 1mamba
Summary: A general purpose malloc(3) implementation
Group: System/Libraries
Vendor: openmamba
Distribution: openmamba
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
URL: http://www.canonware.com/jemalloc/
Source: http://www.canonware.com/download/jemalloc/jemalloc-%{version}.tar.bz2
License: BSD
## AUTOBUILDREQ-BEGIN
BuildRequires: glibc-devel
BuildRequires: perl-devel
## AUTOBUILDREQ-END
Requires: lib%{name} = %{?epoch:%epoch:}%{version}-%{release}
BuildRoot: %{_tmppath}/%{name}-%{version}-root
%description
jemalloc is a general purpose malloc(3) implementation that emphasizes fragmentation avoidance and scalable concurrency support.
%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}
%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}"
%post -n lib%{name} -p /sbin/ldconfig
%postun -n lib%{name} -p /sbin/ldconfig
%files
%defattr(-,root,root)
%{_bindir}/pprof
%files -n lib%{name}
%defattr(-,root,root)
%{_libdir}/libjemalloc.so.*
%doc COPYING
%files -n lib%{name}-devel
%defattr(-,root,root)
%{_bindir}/jemalloc.sh
%dir %{_includedir}/jemalloc
%{_includedir}/jemalloc/jemalloc.h
%{_libdir}/libjemalloc.a
%{_libdir}/libjemalloc.so
%{_libdir}/libjemalloc_pic.a
%dir %{_datadir}/doc/jemalloc
%{_datadir}/doc/jemalloc/jemalloc.html
%{_mandir}/man3/jemalloc.3*
%doc ChangeLog README
%changelog
* Sun Dec 28 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6.0-1mamba
- package created using the webbuild interface