extra/x265 to 3.5-1

This commit is contained in:
Kevin Mihelich 2021-03-23 14:04:59 +00:00
parent 858115906b
commit 6d35c0d495

View file

@ -9,39 +9,40 @@
# - patch from upstream bug https://bitbucket.org/multicoreware/x265/issues/442
pkgname=x265
pkgver=3.4
pkgver=3.5
pkgrel=1
pkgdesc='Open Source H265/HEVC video encoder'
arch=(x86_64)
url=https://bitbucket.org/multicoreware/x265
url=https://bitbucket.org/multicoreware/x265_git
license=(GPL)
depends=(gcc-libs)
makedepends=(
cmake
mercurial
git
nasm
ninja
)
provides=(libx265.so)
source=(hg+https://bitbucket.org/multicoreware/x265#tag=2a65b720985096bcb1664f7cb05c3d04aeb576f5
_tag=f0c1022b6be121a753ff02853fbe33da71988656
source=(git+https://bitbucket.org/multicoreware/x265_git#tag=${_tag}
arm.patch)
sha256sums=('SKIP'
'067b934ae83339deedc58608d272529a004789c3e2819b94636d66a5806fd64b')
pkgver() {
cd x265
cd x265_git
hg id --tags
git describe --tags
}
prepare() {
cd x265
cd x265_git
patch -p1 -i ../arm.patch
}
build() {
[[ $CARCH != "aarch64" ]] && CONFIG="-DENABLE_ASSEMBLY=OFF"
cmake -S x265/source -B build -G Ninja \
cmake -S x265_git/source -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_SHARED=TRUE \
$CONFIG