wok diff file/receipt @ rev 24546

updated file, libmagic, libmagic-dev and python-magic (5.38 -> 5.41)
author Hans-G?nter Theisgen
date Fri Feb 25 07:20:29 2022 +0100 (2022-02-25)
parents b569b85b0fb9
children c370be1be30e
line diff
     1.1 --- a/file/receipt	Mon Jan 17 18:18:17 2022 +0000
     1.2 +++ b/file/receipt	Fri Feb 25 07:20:29 2022 +0100
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="file"
     1.7 -VERSION="5.38"
     1.8 +VERSION="5.41"
     1.9  CATEGORY="system-tools"
    1.10  SHORT_DESC="Determines file type using 'magic' numbers."
    1.11  MAINTAINER="erjo@slitaz.org"
    1.12 @@ -11,8 +11,8 @@
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WGET_URL="ftp://ftp.astron.com/pub/file/$TARBALL"
    1.15  
    1.16 -DEPENDS="libmagic zlib"
    1.17 -BUILD_DEPENDS="python python-setuptools zlib-dev"
    1.18 +DEPENDS="gcc83-lib-base libmagic zlib"
    1.19 +BUILD_DEPENDS="gcc83 python python-setuptools zlib-dev"
    1.20  
    1.21  HOST_ARCH="i486 arm"
    1.22  
    1.23 @@ -20,7 +20,8 @@
    1.24  
    1.25  # Handle cross compilation. python is installed in a ARM cook env.
    1.26  case "$ARCH" in
    1.27 -	arm) BUILD_DEPENDS="" ;;
    1.28 +	(arm)	BUILD_DEPENDS=""
    1.29 +		;;
    1.30  esac
    1.31  
    1.32  # What is the latest version available today?
    1.33 @@ -37,9 +38,10 @@
    1.34  		src/readelf.c
    1.35  
    1.36  	./configure				\
    1.37 +		CC=gcc-83			\
    1.38  		--datarootdir=/usr/share	\
    1.39  		$CONFIGURE_ARGS &&
    1.40 -	make -j 1 &&
    1.41 +	make &&
    1.42  	make install &&
    1.43  	cd python &&
    1.44  	python setup.py build &&