wok diff libgcrypt/receipt @ rev 24019

syslinux: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Feb 28 16:32:57 2021 +0000 (2021-02-28)
parents f83b91339ec0
children 5d79829fa876
line diff
     1.1 --- a/libgcrypt/receipt	Wed Dec 12 14:49:05 2018 +0100
     1.2 +++ b/libgcrypt/receipt	Sun Feb 28 16:32:57 2021 +0000
     1.3 @@ -1,24 +1,26 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libgcrypt"
     1.7 -VERSION="1.8.4"
     1.8 +VERSION="1.8.5"
     1.9  CATEGORY="security"
    1.10 -SHORT_DESC="Cryptographic library based on GnuPG"
    1.11 +SHORT_DESC="Cryptographic library based on GnuPG."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2 LGPL2.1"
    1.14 +WEB_SITE="https://www.gnupg.org/related_software/libgcrypt/"
    1.15 +
    1.16  TARBALL="$PACKAGE-$VERSION.tar.bz2"
    1.17 -WEB_SITE="https://www.gnupg.org/related_software/libgcrypt/"
    1.18  WGET_URL="https://www.gnupg.org/ftp/gcrypt/libgcrypt/$TARBALL"
    1.19 -HOST_ARCH="i486 arm"
    1.20  
    1.21  DEPENDS="libgpg-error"
    1.22  BUILD_DEPENDS="libgpg-error-dev"
    1.23  
    1.24 +HOST_ARCH="i486 arm"
    1.25 +
    1.26  # Rules to configure and make the package.
    1.27  compile_rules()
    1.28  {
    1.29  	# Integrity check: https://www.gnupg.org/download/integrity_check.html
    1.30 -	echo "4a8ef9db6922f3a31992aca5640b4198a69b58fc  $SRC/$TARBALL" | sha1sum -c || exit 1
    1.31 +	echo "2d8781e92f88706707a1e76fb628b499ad538a30  $SRC/$TARBALL" | sha1sum -c || exit 1
    1.32  
    1.33  	case "$ARCH" in
    1.34  		arm)
    1.35 @@ -28,11 +30,12 @@
    1.36  				--host=arm-slitaz-linux-gnueabi ;;
    1.37  		*)
    1.38  			export LDFLAGS="$LDFLAGS -Wl,--copy-dt-needed-entries -lgpg-error"
    1.39 -			./configure \
    1.40 -				--build=$HOST_SYSTEM \
    1.41 +			./configure			\
    1.42 +				--build=$HOST_SYSTEM	\
    1.43  				--host=$HOST_SYSTEM ;;
    1.44  	esac &&
    1.45 -	make && make install
    1.46 +	make &&
    1.47 +	make install
    1.48  
    1.49  	find $install/usr/share/man -type f -exec gzip -9 \{\} \;
    1.50  }
    1.51 @@ -40,8 +43,10 @@
    1.52  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.53  genpkg_rules()
    1.54  {
    1.55 -	mkdir -p $fs/usr/bin $fs/usr/lib
    1.56 -	cp -a $install/usr/bin/dumpsexp $fs/usr/bin
    1.57 -	cp -a $install/usr/bin/hmac256 $fs/usr/bin
    1.58 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.59 +	mkdir -p $fs/usr/bin
    1.60 +	mkdir -p $fs/usr/lib
    1.61 +
    1.62 +	cp -a $install/usr/bin/dumpsexp	$fs/usr/bin
    1.63 +	cp -a $install/usr/bin/hmac256	$fs/usr/bin
    1.64 +	cp -a $install/usr/lib/*.so*	$fs/usr/lib
    1.65  }