wok diff libdvdread-dev/receipt @ rev 21935

soundtouch: fix build
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Oct 06 18:10:58 2019 +0200 (2019-10-06)
parents eeba7ab1dffe
children 797d6c2327f1
line diff
     1.1 --- a/libdvdread-dev/receipt	Thu Jan 24 18:16:34 2019 +0100
     1.2 +++ b/libdvdread-dev/receipt	Sun Oct 06 18:10:58 2019 +0200
     1.3 @@ -1,39 +1,39 @@
     1.4  # SliTaz package receipt."
     1.5  
     1.6  PACKAGE="libdvdread-dev"
     1.7 -VERSION="4.1.3"
     1.8 +VERSION="6.0.1"
     1.9  CATEGORY="system-tools"
    1.10 -SHORT_DESC="Librairy for reading DVDs dev files."
    1.11 +SHORT_DESC="Library for reading DVDs - development files."
    1.12  MAINTAINER="erjo@slitaz.org"
    1.13  LICENSE="GPL2"
    1.14 -WANTED="libdvdread"
    1.15  WEB_SITE="http://dvdnav.mplayerhq.hu/"
    1.16  
    1.17 +WANTED="libdvdread"
    1.18  DEPENDS="libdvdread pkg-config"
    1.19  
    1.20  genpkg_rules()
    1.21  {
    1.22  	mkdir -p $fs/usr
    1.23  	
    1.24 -	# Copying include dir if existes
    1.25 +	# Copying include directory, if exists
    1.26  	if [ -d "$install/usr/include" ]; then
    1.27 -		cp -a $install/usr/include $fs/usr
    1.28 +		cp -a $install/usr/include	$fs/usr
    1.29  	fi
    1.30  
    1.31 -	# Copying bin dir if existes
    1.32 +	# Copying bin directory, if exists
    1.33  	if [ -d "$install/usr/bin" ]; then
    1.34 -		cp -a $install/usr/bin $fs/usr
    1.35 +		cp -a $install/usr/bin		$fs/usr
    1.36  	fi
    1.37  
    1.38 -	# Copying pkgconfig dir if existes
    1.39 +	# Copying pkgconfig directory, if exists
    1.40  	if [ -d "$install/usr/lib/pkgconfig" ]; then
    1.41  		test -d $install/usr/lib/ || mkdir -p $install/usr/lib/
    1.42  		cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.43  	fi
    1.44  	
    1.45 -	# Copying static libs if existes
    1.46 +	# Copying static libraries, if exist
    1.47  	if ( find $install/usr/lib -name "*.*a" > /dev/null ); then
    1.48  		test -d $fs/usr/lib || mkdir -p $fs/usr/lib
    1.49 -		cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.50 +		cp -a $install/usr/lib/*.*a	$fs/usr/lib
    1.51  	fi
    1.52  }