wok diff libunwind/receipt @ rev 24843

updated libunwind and libunwind-dev (1.3.1 -> 1.6.2)
author Hans-G?nter Theisgen
date Fri Mar 25 09:52:38 2022 +0100 (2022-03-25)
parents 17091bc7c301
children
line diff
     1.1 --- a/libunwind/receipt	Thu Feb 10 18:04:02 2022 +0000
     1.2 +++ b/libunwind/receipt	Fri Mar 25 09:52:38 2022 +0100
     1.3 @@ -1,18 +1,18 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libunwind"
     1.7 -VERSION="1.3.1"
     1.8 +VERSION="1.6.2"
     1.9  CATEGORY="development"
    1.10  SHORT_DESC="C programming interface (API) to determine the call-chain of a program."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 -LICENSE="X11"
    1.13 +LICENSE="MIT"
    1.14  WEB_SITE="https://www.nongnu.org/libunwind/"
    1.15  
    1.16  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.17 -WGET_URL="http://download.savannah.gnu.org/releases/libunwind/$TARBALL"
    1.18 +WGET_URL="https://download.savannah.gnu.org/releases/libunwind/$TARBALL"
    1.19  
    1.20 -DEPENDS="liblzma"
    1.21 -BUILD_DEPENDS="liblzma-dev"
    1.22 +DEPENDS="gcc83-lib-base liblzma"
    1.23 +BUILD_DEPENDS="gcc83 liblzma-dev"
    1.24  
    1.25  # What is the latest version available today?
    1.26  current_version()
    1.27 @@ -24,15 +24,16 @@
    1.28  # Rules to configure and make the package.
    1.29  compile_rules()
    1.30  {
    1.31 -	./configure \
    1.32 +	./configure		\
    1.33 +		CC=gcc-83	\
    1.34 +		CXX=g++-83	\
    1.35  		$CONFIGURE_ARGS &&
    1.36 -	make -j 1 &&
    1.37 +	make &&
    1.38  	make install
    1.39  }
    1.40  
    1.41  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.42  genpkg_rules()
    1.43  {
    1.44 -	mkdir -p $fs/usr/lib
    1.45 -	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.46 +	cook_copy_files	*.so*
    1.47  }