wok-current rev 24827
updated libsigsegv (2.12 -> 2.14)
author | Hans-G?nter Theisgen |
---|---|
date | Wed Mar 23 17:25:49 2022 +0100 (2022-03-23) |
parents | 034e033a52cf |
children | 8ae9b0064b80 |
files | libsigsegv/description.txt libsigsegv/receipt |
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/libsigsegv/description.txt Wed Mar 23 17:25:49 2022 +0100 1.3 @@ -0,0 +1,12 @@ 1.4 +GNU libsigsegv is a library for handling page faults in user mode. 1.5 +A page fault occurs when a program tries to access to a region of memory 1.6 +that is currently not available. 1.7 + 1.8 +Catching and handling a page fault is a useful technique for implementing: 1.9 + 1.10 + pageable virtual memory, 1.11 + memory-mapped access to persistent databases, 1.12 + generational garbage collectors, 1.13 + stack overflow handlers, 1.14 + distributed shared memory, 1.15 + ...
2.1 --- a/libsigsegv/receipt Wed Mar 23 17:18:45 2022 +0100 2.2 +++ b/libsigsegv/receipt Wed Mar 23 17:25:49 2022 +0100 2.3 @@ -1,7 +1,7 @@ 2.4 # SliTaz package receipt. 2.5 2.6 PACKAGE="libsigsegv" 2.7 -VERSION="2.12" 2.8 +VERSION="2.14" 2.9 CATEGORY="development" 2.10 SHORT_DESC="Library for handling page faults in user mode." 2.11 MAINTAINER="paul@slitaz.org" 2.12 @@ -28,15 +28,13 @@ 2.13 --infodir=/usr/share/info \ 2.14 --mandir=/usr/share/man \ 2.15 $CONFIGURE_ARGS && 2.16 - make -j 1 && 2.17 - make DESTDIR=$DESTDIR install 2.18 + make && 2.19 + make install DESTDIR=$DESTDIR 2.20 } 2.21 2.22 # Rules to gen a SliTaz package suitable for Tazpkg. 2.23 genpkg_rules() 2.24 { 2.25 - mkdir -p $fs/usr/lib 2.26 - 2.27 - cp -a $install/usr/lib $fs/usr 2.28 - cp -a $install/usr/include $fs/usr 2.29 + cook_copy_folders include 2.30 + cook_copy_folders lib 2.31 }