wok diff x264/receipt @ rev 22595

updated childsplay (3.3 -> 3.4)
author Hans-G?nter Theisgen
date Tue Jan 07 17:19:08 2020 +0100 (2020-01-07)
parents eed68127093d
children db191dc5aff6
line diff
     1.1 --- a/x264/receipt	Wed May 18 15:51:24 2016 +0200
     1.2 +++ b/x264/receipt	Tue Jan 07 17:19:08 2020 +0100
     1.3 @@ -1,35 +1,41 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="x264"
     1.7 -VERSION="20160517-2245"
     1.8 +VERSION="20191105-2245"
     1.9  CATEGORY="multimedia"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="GPL2"
    1.12 -SHORT_DESC="free library for encoding H264/AVC video streams"
    1.13 -WEB_SITE="http://www.videolan.org/developers/x264.html"
    1.14 +SHORT_DESC="Free library for encoding H264/AVC video streams."
    1.15 +WEB_SITE="https://www.videolan.org/developers/x264.html"
    1.16 +
    1.17  SOURCE="$PACKAGE-snapshot"
    1.18  TARBALL="$SOURCE-$VERSION.tar.bz2"
    1.19  WGET_URL="http://ftp.videolan.org/pub/videolan/x264/snapshots/$TARBALL"
    1.20 +
    1.21 +DEPENDS="glibc-base"
    1.22 +BUILD_DEPENDS="nasm"
    1.23 +
    1.24  #HOST_ARCH="i486 arm"
    1.25  
    1.26 -DEPENDS="glibc-base"
    1.27 -BUILD_DEPENDS="yasm"
    1.28 -
    1.29  # Rules to configure and make the package.
    1.30 -compile_rules() {
    1.31 -	./configure \
    1.32 -		--enable-shared $CONFIGURE_ARGS &&
    1.33 -	make && make \
    1.34 -		DESTDIR=$DESTDIR \
    1.35 -		bindir=/usr/bin \
    1.36 -		libdir=/usr/lib \
    1.37 -		includedir=/usr/include install
    1.38 +compile_rules()
    1.39 +{
    1.40 +	./configure		\
    1.41 +		--enable-shared	\
    1.42 +		$CONFIGURE_ARGS &&
    1.43 +	make &&
    1.44 +	make	install			\
    1.45 +		DESTDIR=$DESTDIR	\
    1.46 +		bindir=/usr/bin		\
    1.47 +		libdir=/usr/lib		\
    1.48 +		includedir=/usr/include
    1.49  }
    1.50  
    1.51  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.52  genpkg_rules()
    1.53  {
    1.54  	mkdir -p $fs/usr/lib
    1.55 -	cp -a $install/usr/bin $fs/usr
    1.56 -	cp -a $install/usr/lib/*so* $fs/usr/lib/
    1.57 +
    1.58 +	cp -a $install/usr/bin		$fs/usr
    1.59 +	cp -a $install/usr/lib/*so*	$fs/usr/lib/
    1.60  }