automatic update by autodist [release 2.10-1mamba;Fri Jul 01 2011]
This commit is contained in:
parent
02229cbf87
commit
04174ae319
10
README.md
10
README.md
@ -1,2 +1,12 @@
|
||||
# libsigsegv
|
||||
|
||||
This is a library for handling page faults in user mode. A page fault
|
||||
occurs when a program tries to access to a region of memory that is
|
||||
currently not available. Catching and handling a page fault is a useful
|
||||
technique for implementing:
|
||||
- pageable virtual memory
|
||||
- memory-mapped access to persistent databases
|
||||
- generational garbage collectors
|
||||
- stack overflow handlers
|
||||
- distributed shared memory
|
||||
|
||||
|
115
libsigsegv.spec
Normal file
115
libsigsegv.spec
Normal file
@ -0,0 +1,115 @@
|
||||
Name: libsigsegv
|
||||
Version: 2.10
|
||||
Release: 1mamba
|
||||
Summary: is a library for handling page faults in user mode.
|
||||
Group: System/Libraries
|
||||
Vendor: openmamba
|
||||
Distribution: openmamba
|
||||
Packager: gil <puntogil@libero.it>
|
||||
URL: http://libsigsegv.sourceforge.net/
|
||||
Source: http://ftp.gnu.org/gnu/libsigsegv/libsigsegv-%{version}.tar.gz
|
||||
License: GPL
|
||||
## AUTOBUILDREQ-BEGIN
|
||||
BuildRequires: glibc-devel
|
||||
## AUTOBUILDREQ-END
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
||||
|
||||
%description
|
||||
This is a library for handling page faults in user mode. A page fault
|
||||
occurs when a program tries to access to a region of memory that is
|
||||
currently not available. Catching and handling a page fault is a useful
|
||||
technique for implementing:
|
||||
- pageable virtual memory
|
||||
- memory-mapped access to persistent databases
|
||||
- generational garbage collectors
|
||||
- stack overflow handlers
|
||||
- distributed shared memory
|
||||
|
||||
%package devel
|
||||
Group: Development/Libraries
|
||||
Summary: Libraries and headers for %{name}
|
||||
Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
||||
|
||||
%description devel
|
||||
This is a library for handling page faults in user mode. A page fault
|
||||
occurs when a program tries to access to a region of memory that is
|
||||
currently not available. Catching and handling a page fault is a useful
|
||||
technique for implementing:
|
||||
- pageable virtual memory
|
||||
- memory-mapped access to persistent databases
|
||||
- generational garbage collectors
|
||||
- stack overflow handlers
|
||||
- distributed shared memory
|
||||
|
||||
This package contains libraries and header files need for development.
|
||||
|
||||
%package static
|
||||
Summary: Static libraries for %{name}
|
||||
Group: Development/Libraries
|
||||
Requires: %{name}-devel = %{version}
|
||||
|
||||
%description static
|
||||
This is a library for handling page faults in user mode. A page fault
|
||||
occurs when a program tries to access to a region of memory that is
|
||||
currently not available. Catching and handling a page fault is a useful
|
||||
technique for implementing:
|
||||
- pageable virtual memory
|
||||
- memory-mapped access to persistent databases
|
||||
- generational garbage collectors
|
||||
- stack overflow handlers
|
||||
- distributed shared memory
|
||||
|
||||
This package contains static libraries need for development.
|
||||
|
||||
%prep
|
||||
|
||||
%setup -q
|
||||
|
||||
%build
|
||||
%configure \
|
||||
--enable-shared \
|
||||
--enable-static
|
||||
|
||||
%make
|
||||
make check
|
||||
|
||||
%install
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
%makeinstall
|
||||
|
||||
%clean
|
||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||
|
||||
%post -p /sbin/ldconfig
|
||||
%postun -p /sbin/ldconfig
|
||||
|
||||
%files
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.so.*
|
||||
%doc AUTHORS COPYING ChangeLog ChangeLog.1 NEWS README README.woe32
|
||||
|
||||
%files devel
|
||||
%defattr(-,root,root)
|
||||
%{_includedir}/*.h
|
||||
%{_libdir}/*.so
|
||||
|
||||
%files static
|
||||
%defattr(-,root,root)
|
||||
%{_libdir}/*.a
|
||||
%{_libdir}/*.la
|
||||
|
||||
%changelog
|
||||
* Fri Jul 01 2011 Automatic Build System <autodist@mambasoft.it> 2.10-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Tue Nov 09 2010 Automatic Build System <autodist@mambasoft.it> 2.9-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Wed Jan 13 2010 Automatic Build System <autodist@mambasoft.it> 2.8-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Sat Aug 15 2009 Automatic Build System <autodist@mambasoft.it> 2.7-1mamba
|
||||
- automatic update by autodist
|
||||
|
||||
* Mon Nov 10 2008 gil <puntogil@libero.it> 2.6-1mamba
|
||||
- package created by autospec
|
Loading…
Reference in New Issue
Block a user