mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
extra/x265 to 3.5-1
This commit is contained in:
parent
858115906b
commit
6d35c0d495
1 changed files with 9 additions and 8 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue