wok diff libsigsegv/receipt @ rev 23878

ipxe: remove mirror.switch.ch
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Jul 03 08:45:11 2020 +0000 (2020-07-03)
parents 77a6f66653ab
children 71360a13cd94
line diff
     1.1 --- a/libsigsegv/receipt	Wed Feb 03 19:44:19 2016 +0000
     1.2 +++ b/libsigsegv/receipt	Fri Jul 03 08:45:11 2020 +0000
     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 -