PKGBUILDs/extra/x265/PKGBUILD
2022-03-06 18:16:24 +00:00

53 lines
1.1 KiB
Bash

# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
# Contributor: kfgz <kfgz@interia.pl>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - patch to attempt fixing ARM hackery by bandwagoning developers
# - don't build 12- and 10-bit variants
pkgname=x265
pkgver=3.5
pkgrel=3
pkgdesc='Open Source H265/HEVC video encoder'
arch=(x86_64)
url=https://bitbucket.org/multicoreware/x265_git
license=(GPL)
depends=(gcc-libs)
makedepends=(
cmake
git
nasm
ninja
)
provides=(libx265.so)
_tag=f0c1022b6be121a753ff02853fbe33da71988656
source=(git+https://bitbucket.org/multicoreware/x265_git#tag=${_tag}
0001-arm-fixes.patch)
sha256sums=('SKIP'
'9a527deb44ed5be459519d1e6721020bcbcbe74e73896b59e6df3a62888f152c')
pkgver() {
cd x265_git
git describe --tags
}
prepare() {
cd x265_git
git apply ../0001-arm-fixes.patch
}
build() {
cmake -S x265_git/source -B build -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DENABLE_SHARED=TRUE
ninja -C build
}
package() {
DESTDIR="${pkgdir}" ninja -C build install
}
# vim: ts=2 sw=2 et: