wok-next rev 21013

Small updates
author Aleksej Bobylev <al.bobylev@gmail.com>
date Sun Oct 14 05:29:23 2018 +0300 (2018-10-14)
parents b5f2a6ab88b6
children 8b193d73523f
files libheif/receipt nasm/.icon.png x264/receipt x265/receipt
line diff
     1.1 --- a/libheif/receipt	Sat Oct 13 17:31:50 2018 +0300
     1.2 +++ b/libheif/receipt	Sun Oct 14 05:29:23 2018 +0300
     1.3 @@ -1,7 +1,7 @@
     1.4  # SliTaz package receipt v2.
     1.5  
     1.6  PACKAGE="libheif"
     1.7 -VERSION="1.1.0"
     1.8 +VERSION="1.3.2"
     1.9  CATEGORY="video"
    1.10  SHORT_DESC="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"
    1.11  MAINTAINER="al.bobylev@gmail.com"
    1.12 @@ -9,15 +9,16 @@
    1.13  WEB_SITE="https://www.libde265.org/"
    1.14  
    1.15  TARBALL="$PACKAGE-$VERSION.tar.gz"
    1.16 -WGET_URL="https://github.com/strukturag/libheif/archive/v$VERSION.tar.gz"
    1.17 +WGET_URL="https://github.com/strukturag/libheif/releases/download/v$VERSION/$TARBALL"
    1.18  
    1.19 -BUILD_DEPENDS="automake libtool libde265-dev x265-dev libjpeg-turbo-dev \
    1.20 -libpng16-dev"
    1.21 -SPLIT="libheif-dev"
    1.22 +BUILD_DEPENDS="libde265-dev x265-dev libjpeg-turbo-dev libpng16-dev"
    1.23 +SPLIT="$PACKAGE-dev"
    1.24  
    1.25  compile_rules() {
    1.26 -	./autogen.sh &&
    1.27 -	./configure $CONFIGURE_ARGS &&
    1.28 +	./configure \
    1.29 +		--disable-static \
    1.30 +		$CONFIGURE_ARGS &&
    1.31 +	fix libtool &&
    1.32  	make &&
    1.33  	make install
    1.34  }
     2.1 Binary file nasm/.icon.png has changed
     3.1 --- a/x264/receipt	Sat Oct 13 17:31:50 2018 +0300
     3.2 +++ b/x264/receipt	Sun Oct 14 05:29:23 2018 +0300
     3.3 @@ -1,33 +1,33 @@
     3.4  # SliTaz package receipt v2.
     3.5  
     3.6  PACKAGE="x264"
     3.7 -VERSION="20170601-2245"
     3.8 +VERSION="20181013"
     3.9  CATEGORY="multimedia"
    3.10  SHORT_DESC="Free H.264/AVC encoder"
    3.11  MAINTAINER="jozee@slitaz.org"
    3.12  LICENSE="GPL2"
    3.13  WEB_SITE="http://www.videolan.org/developers/x264.html"
    3.14  
    3.15 -TARBALL="x264-snapshot-$VERSION-stable.tar.bz2"
    3.16 +TARBALL="x264-snapshot-$VERSION-2245-stable.tar.bz2"
    3.17  WGET_URL="http://ftp.videolan.org/pub/videolan/x264/snapshots/$TARBALL"
    3.18  
    3.19 -BUILD_DEPENDS="yasm"
    3.20 +BUILD_DEPENDS="nasm"
    3.21  SPLIT="x264-dev"
    3.22  
    3.23 -# Rules to configure and make the package.
    3.24  compile_rules() {
    3.25  	./configure \
    3.26  		--prefix=/usr \
    3.27  		--enable-shared \
    3.28 -		$CONFIGURE_ARGS &&
    3.29 -	make && make install
    3.30 +		&&
    3.31 +	make &&
    3.32 +	make install || return 1
    3.33 +
    3.34 +	cook_pick_docs doc/*.txt
    3.35  }
    3.36  
    3.37 -# Rules to gen a SliTaz package suitable for Tazpkg.
    3.38 -genpkg_rules()
    3.39 -{
    3.40 +genpkg_rules() {
    3.41  	case $PACKAGE in
    3.42 -		x264) copy @std;;
    3.43 +		x264)  copy @std;;
    3.44  		*-dev) copy @dev;;
    3.45  	esac
    3.46  }
     4.1 --- a/x265/receipt	Sat Oct 13 17:31:50 2018 +0300
     4.2 +++ b/x265/receipt	Sun Oct 14 05:29:23 2018 +0300
     4.3 @@ -1,7 +1,7 @@
     4.4  # SliTaz package receipt v2.
     4.5  
     4.6  PACKAGE="x265"
     4.7 -VERSION="2.4"
     4.8 +VERSION="2.9"
     4.9  CATEGORY="multimedia"
    4.10  SHORT_DESC="Free H.265/MPEG-H HEVC encoder"
    4.11  MAINTAINER="pascal.bellard@slitaz.org"
    4.12 @@ -11,22 +11,24 @@
    4.13  TARBALL="${PACKAGE}_$VERSION.tar.gz"
    4.14  WGET_URL="http://ftp.videolan.org/pub/videolan/x265/$TARBALL"
    4.15  
    4.16 -BUILD_DEPENDS="cmake yasm"
    4.17 +BUILD_DEPENDS="cmake nasm"
    4.18  SPLIT="x265-dev"
    4.19  
    4.20 -# Rules to configure and make the package.
    4.21 -compile_rules()
    4.22 -{
    4.23 +compile_rules() {
    4.24  	cd $src/build
    4.25 -	cmake -DCMAKE_INSTALL_PREFIX=/usr ../source &&
    4.26 -	make && make install
    4.27 +	cmake \
    4.28 +		-DCMAKE_INSTALL_PREFIX=/usr \
    4.29 +		../source &&
    4.30 +	make &&
    4.31 +	make install || return 1
    4.32 +
    4.33 +	cd $src
    4.34 +	cook_pick_docs readme.rst doc/reST/*.rst
    4.35  }
    4.36  
    4.37 -# Rules to gen a SliTaz package suitable for Tazpkg.
    4.38 -genpkg_rules()
    4.39 -{
    4.40 +genpkg_rules() {
    4.41  	case $PACKAGE in
    4.42 -		x265) copy @std;;
    4.43 +		x265)  copy @std;;
    4.44  		*-dev) copy @dev;;
    4.45  	esac
    4.46  }