wok rev 21298

updated libsigsegv (2.10 -> 2.12)
author Hans-G?nter Theisgen
date Wed Apr 17 16:54:30 2019 +0100 (2019-04-17)
parents 5da5cfc71bb0
children eb224fc20462
files libsigsegv/receipt
line diff
     1.1 --- a/libsigsegv/receipt	Wed Apr 17 16:47:19 2019 +0100
     1.2 +++ b/libsigsegv/receipt	Wed Apr 17 16:54:30 2019 +0100
     1.3 @@ -1,13 +1,14 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libsigsegv"
     1.7 -VERSION="2.10"
     1.8 +VERSION="2.12"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="Library for handling page faults in user mode."
    1.11  MAINTAINER="paul@slitaz.org"
    1.12  LICENSE="GPL2"
    1.13 +WEB_SITE="https://www.gnu.org/software/libsigsegv/"
    1.14 +
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WEB_SITE="http://www.gnu.org/software/libsigsegv/"
    1.17  WGET_URL="$GNU_MIRROR/$PACKAGE/$TARBALL"
    1.18  
    1.19  DEPENDS=""
    1.20 @@ -15,20 +16,20 @@
    1.21  # Rules to configure and make the package.
    1.22  compile_rules()
    1.23  {
    1.24 -	cd $src
    1.25 -	./configure \
    1.26 -		--prefix=/usr \
    1.27 -		--infodir=/usr/share/info \
    1.28 -		--mandir=/usr/share/man \
    1.29 +	./configure				\
    1.30 +		--prefix=/usr			\
    1.31 +		--infodir=/usr/share/info	\
    1.32 +		--mandir=/usr/share/man		\
    1.33  		$CONFIGURE_ARGS &&
    1.34 -	make && make DESTDIR=$DESTDIR install
    1.35 +	make -j 1 &&
    1.36 +	make DESTDIR=$DESTDIR install
    1.37  }
    1.38  
    1.39  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.40  genpkg_rules()
    1.41  {
    1.42  	mkdir -p $fs/usr/lib
    1.43 -	cp -a $install/usr/lib $fs/usr
    1.44 -	cp -a $install/usr/include $fs/usr
    1.45 +
    1.46 +	cp -a $install/usr/lib		$fs/usr
    1.47 +	cp -a $install/usr/include	$fs/usr
    1.48  }
    1.49 -