# HG changeset patch # User Hans-G?nter Theisgen # Date 1648052749 -3600 # Node ID 5fe4ecec3100b19d8a8dc8cef13c862b07495cc0 # Parent 034e033a52cf43ec909c213976b3d69455a26fa2 updated libsigsegv (2.12 -> 2.14) diff -r 034e033a52cf -r 5fe4ecec3100 libsigsegv/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libsigsegv/description.txt Wed Mar 23 17:25:49 2022 +0100 @@ -0,0 +1,12 @@ +GNU libsigsegv 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, + ... diff -r 034e033a52cf -r 5fe4ecec3100 libsigsegv/receipt --- a/libsigsegv/receipt Wed Mar 23 17:18:45 2022 +0100 +++ b/libsigsegv/receipt Wed Mar 23 17:25:49 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="libsigsegv" -VERSION="2.12" +VERSION="2.14" CATEGORY="development" SHORT_DESC="Library for handling page faults in user mode." MAINTAINER="paul@slitaz.org" @@ -28,15 +28,13 @@ --infodir=/usr/share/info \ --mandir=/usr/share/man \ $CONFIGURE_ARGS && - make -j 1 && - make DESTDIR=$DESTDIR install + make && + make install DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - - cp -a $install/usr/lib $fs/usr - cp -a $install/usr/include $fs/usr + cook_copy_folders include + cook_copy_folders lib }