wok rev 22144

updated x264 and x264-dev (20160517-2245 -> 20191105-2245)
author Hans-G?nter Theisgen
date Wed Nov 06 15:16:51 2019 +0100 (2019-11-06)
parents 07b9976e5b71
children 64085bdff041
files x264-dev/receipt x264/receipt
line diff
     1.1 --- a/x264-dev/receipt	Wed Nov 06 13:57:20 2019 +0100
     1.2 +++ b/x264-dev/receipt	Wed Nov 06 15:16:51 2019 +0100
     1.3 @@ -1,12 +1,13 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="x264-dev"
     1.7 -VERSION="20160517-2245"
     1.8 +VERSION="20191105-2245"
     1.9  CATEGORY="development"
    1.10  MAINTAINER="jozee@slitaz.org"
    1.11  LICENSE="GPL2"
    1.12 -SHORT_DESC="x264 devel files"
    1.13 +SHORT_DESC="x264 - development files."
    1.14  WEB_SITE="http://www.videolan.org/developers/x264.html"
    1.15 +
    1.16  WANTED="x264"
    1.17  SOURCE="$WANTED-snapshot"
    1.18  
    1.19 @@ -16,7 +17,8 @@
    1.20  genpkg_rules()
    1.21  {
    1.22  	mkdir -p $fs/usr/lib
    1.23 -	cp -a $src/*.*a $fs/usr/lib
    1.24 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 +
    1.27 +	cp -a $src/*.*a				$fs/usr/lib
    1.28 +	cp -a $install/usr/lib/pkgconfig	$fs/usr/lib
    1.29 +	cp -a $install/usr/include		$fs/usr
    1.30  }
     2.1 --- a/x264/receipt	Wed Nov 06 13:57:20 2019 +0100
     2.2 +++ b/x264/receipt	Wed Nov 06 15:16:51 2019 +0100
     2.3 @@ -1,35 +1,41 @@
     2.4  # SliTaz package receipt.
     2.5  
     2.6  PACKAGE="x264"
     2.7 -VERSION="20160517-2245"
     2.8 +VERSION="20191105-2245"
     2.9  CATEGORY="multimedia"
    2.10  MAINTAINER="jozee@slitaz.org"
    2.11  LICENSE="GPL2"
    2.12 -SHORT_DESC="free library for encoding H264/AVC video streams"
    2.13 -WEB_SITE="http://www.videolan.org/developers/x264.html"
    2.14 +SHORT_DESC="Free library for encoding H264/AVC video streams."
    2.15 +WEB_SITE="https://www.videolan.org/developers/x264.html"
    2.16 +
    2.17  SOURCE="$PACKAGE-snapshot"
    2.18  TARBALL="$SOURCE-$VERSION.tar.bz2"
    2.19  WGET_URL="http://ftp.videolan.org/pub/videolan/x264/snapshots/$TARBALL"
    2.20 +
    2.21 +DEPENDS="glibc-base"
    2.22 +BUILD_DEPENDS="nasm"
    2.23 +
    2.24  #HOST_ARCH="i486 arm"
    2.25  
    2.26 -DEPENDS="glibc-base"
    2.27 -BUILD_DEPENDS="yasm"
    2.28 -
    2.29  # Rules to configure and make the package.
    2.30 -compile_rules() {
    2.31 -	./configure \
    2.32 -		--enable-shared $CONFIGURE_ARGS &&
    2.33 -	make && make \
    2.34 -		DESTDIR=$DESTDIR \
    2.35 -		bindir=/usr/bin \
    2.36 -		libdir=/usr/lib \
    2.37 -		includedir=/usr/include install
    2.38 +compile_rules()
    2.39 +{
    2.40 +	./configure		\
    2.41 +		--enable-shared	\
    2.42 +		$CONFIGURE_ARGS &&
    2.43 +	make &&
    2.44 +	make	install			\
    2.45 +		DESTDIR=$DESTDIR	\
    2.46 +		bindir=/usr/bin		\
    2.47 +		libdir=/usr/lib		\
    2.48 +		includedir=/usr/include
    2.49  }
    2.50  
    2.51  # Rules to gen a SliTaz package suitable for Tazpkg.
    2.52  genpkg_rules()
    2.53  {
    2.54  	mkdir -p $fs/usr/lib
    2.55 -	cp -a $install/usr/bin $fs/usr
    2.56 -	cp -a $install/usr/lib/*so* $fs/usr/lib/
    2.57 +
    2.58 +	cp -a $install/usr/bin		$fs/usr
    2.59 +	cp -a $install/usr/lib/*so*	$fs/usr/lib/
    2.60  }