Merge pull request #14618 from maxice8/x265

x265: update to 2.8.
This commit is contained in:
Enno Boland 2018-05-28 10:59:28 +02:00 committed by GitHub
commit 781e947b90
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 13 additions and 13 deletions

View File

@ -1942,7 +1942,7 @@ libQt5EglFsKmsSupport.so.5 qt5-5.7.1_1
libQt5WebKit.so.5 qt5-webkit-5.6.0_1
libQt5WebKitWidgets.so.5 qt5-webkit-5.6.0_1
libQt5TextToSpeech.so.5 qt5-speech-5.8.0_1
libx265.so.151 x265-2.7_1
libx265.so.160 x265-2.8_1
libQt5Xdg.so.3 libqtxdg-3.1.0_1
libQt5XdgIconLoader.so.3 libqtxdg-3.1.0_1
libqwt.so.6 qwt-6.1.3_1

View File

@ -1,7 +1,7 @@
# Template file for 'avidemux'
pkgname=avidemux
version=2.7.0
revision=4
revision=5
wrksrc="${pkgname}_${version}"
hostmakedepends="cmake pkg-config qt5-host-tools qt5-devel yasm"
makedepends="alsa-lib-devel faac-devel faad2-devel gettext-devel jack-devel glu-devel

View File

@ -1,7 +1,7 @@
# Template file for 'ffmpeg'
pkgname=ffmpeg
version=3.4.2
revision=4
revision=5
short_desc="Decoding, encoding and streaming software"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-3"

View File

@ -1,7 +1,7 @@
# Template file for 'gst-plugins-bad1'
pkgname=gst-plugins-bad1
version=1.14.1
revision=1
revision=2
wrksrc="${pkgname/1/}-${version}"
lib32disabled=yes
build_style=gnu-configure

View File

@ -3,7 +3,7 @@ only_for_archs="i686 i686-musl x86_64 x86_64-musl"
pkgname=handbrake
version=1.0.7
revision=5
revision=6
wrksrc="HandBrake-${version}"
build_options="fdk_aac"
hostmakedepends="automake libtool cmake pkg-config intltool

View File

@ -1,7 +1,7 @@
# Template file for 'vlc'
pkgname=vlc
version=3.0.2
revision=2
revision=3
build_style=gnu-configure
configure_args="--disable-gme --disable-libtar --enable-jack
--disable-live555 --disable-fluidsynth --enable-dvdread

View File

@ -1,25 +1,25 @@
# Template file for 'x265'
pkgname=x265
version=2.7
version=2.8
revision=1
build_style=cmake
build_wrksrc="source"
wrksrc="x265_${version}"
build_style=cmake
configure_args="-DENABLE_PIC=1"
hostmakedepends="yasm"
short_desc="Open Source H.265/HEVC video encoder"
maintainer="Juan RP <xtraeme@voidlinux.eu>"
license="GPL-2.0-or-later"
homepage="http://x265.org/"
license="GPL-2"
distfiles="https://bitbucket.org/multicoreware/x265/downloads/x265_${version}.tar.gz"
checksum=d5e75fa62ffe6ed49e691f8eb8ab8c1634ffcc0725dd553c6fdb4d5443b494a2
checksum=6e59f9afc0c2b87a46f98e33b5159d56ffb3558a49d8e3d79cb7fdc6b7aaa863
if [ -n "$CROSS_BUILD" ]; then
if [ "$CROSS_BUILD" ]; then
configure_args+=" -DCMAKE_SYSTEM_PROCESSOR=${CROSS_BUILD%-musl}"
fi
pre_configure() {
if [ -n "$CROSS_BUILD" ]; then
if [ "$CROSS_BUILD" ]; then
sed -i CMakeLists.txt -e "s; -mcpu=native;;"
fi
}
@ -30,6 +30,6 @@ x265-devel_package() {
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove usr/lib/*.a
vmove "usr/lib/*.a"
}
}