# HG changeset patch # User Hans-G?nter Theisgen # Date 1573051449 -3600 # Node ID 64085bdff04157ea52ff4eff11790c3351ef8c45 # Parent 8feb5dce3d5423bdfb2f128f2eb9597d4d54bd78 updated x265 and x265-dev (1.9 -> 3.2) diff -r 8feb5dce3d54 -r 64085bdff041 x265-dev/receipt --- a/x265-dev/receipt Wed Nov 06 15:16:51 2019 +0100 +++ b/x265-dev/receipt Wed Nov 06 15:44:09 2019 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="x265-dev" -VERSION="1.9" +VERSION="3.2" CATEGORY="development" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -SHORT_DESC="x265 devel files" -WEB_SITE="http://www.videolan.org/developers/x265.html" -WANTED="x265" +SHORT_DESC="x265 - development files." +WEB_SITE="https://www.videolan.org/developers/x265.html" DEPENDS="x265 pkg-config" +WANTED="x265" # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/lib/*a $fs/usr/lib - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/include $fs/usr + + cp -a $install/usr/lib/*a $fs/usr/lib + cp -a $install/usr/lib/pkgconfig $fs/usr/lib + cp -a $install/usr/include $fs/usr } diff -r 8feb5dce3d54 -r 64085bdff041 x265/receipt --- a/x265/receipt Wed Nov 06 15:16:51 2019 +0100 +++ b/x265/receipt Wed Nov 06 15:44:09 2019 +0100 @@ -1,31 +1,35 @@ # SliTaz package receipt. PACKAGE="x265" -VERSION="1.9" +VERSION="3.2" CATEGORY="multimedia" MAINTAINER="pascal.bellard@slitaz.org" LICENSE="GPL2" -SHORT_DESC="free library for encoding H265/MPEG-H HEVC video streams" -WEB_SITE="http://www.videolan.org/developers/x265.html" +SHORT_DESC="Free library for encoding H265/MPEG-H HEVC video streams." +WEB_SITE="https://www.videolan.org/developers/x265.html" + TARBALL="${PACKAGE}_$VERSION.tar.gz" WGET_URL="http://ftp.videolan.org/pub/videolan/x265/$TARBALL" -#HOST_ARCH="i486 arm" DEPENDS="glibc-base" -BUILD_DEPENDS="cmake yasm" +BUILD_DEPENDS="cmake nasm" + +#HOST_ARCH="i486 arm" # Rules to configure and make the package. compile_rules() { cd $src/build cmake -DCMAKE_INSTALL_PREFIX=/usr ../source && - make && make DESTDIR=$DESTDIR install + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*so* $fs/usr/lib/ + + cp -a $install/usr/bin $fs/usr + cp -a $install/usr/lib/*so* $fs/usr/lib/ }