wok diff expat/receipt @ rev 25694

dropbear: typo
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Apr 21 14:12:01 2024 +0000 (12 days ago)
parents dd880df75ff5
children
line diff
     1.1 --- a/expat/receipt	Fri Dec 02 10:26:08 2022 +0000
     1.2 +++ b/expat/receipt	Sun Apr 21 14:12:01 2024 +0000
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="expat"
     1.7 -VERSION="2.5.0"
     1.8 +VERSION="2.6.0"
     1.9  CATEGORY="x-window"
    1.10  SHORT_DESC="XML parsing C library."
    1.11  MAINTAINER="pankso@slitaz.org"
    1.12 @@ -11,6 +11,8 @@
    1.13  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.14  WGET_URL="https://github.com/libexpat/libexpat/releases/download/R_${VERSION//./_}/$TARBALL"
    1.15  
    1.16 +BUILD_DEPENDS="gcc83"
    1.17 +
    1.18  HOST_ARCH="i486 arm"
    1.19  
    1.20  # What is the latest version available today?
    1.21 @@ -23,7 +25,10 @@
    1.22  # Rules to configure and make the package.
    1.23  compile_rules()
    1.24  {
    1.25 -	./configure $CONFIGURE_ARGS &&
    1.26 +	./configure \
    1.27 +		CC=gcc-83		\
    1.28 +		CXX=g++-83		\
    1.29 +		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31  	make install DESTDIR=$DESTDIR
    1.32  }