2015-10-11 14:21:16 +00:00
|
|
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
2016-10-02 14:45:31 +00:00
|
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
2015-10-11 14:21:16 +00:00
|
|
|
# Contributor: kfgz <kfgz@interia.pl>
|
2014-03-30 04:59:56 +00:00
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - patch to attempt fixing ARM hackery by bandwagoning developers
|
2022-02-07 04:03:59 +00:00
|
|
|
# - don't build 12- and 10-bit variants
|
2014-03-30 04:59:56 +00:00
|
|
|
|
|
|
|
pkgname=x265
|
2024-11-08 01:39:21 +00:00
|
|
|
pkgver=4.0
|
2024-06-21 23:05:26 +00:00
|
|
|
pkgrel=1
|
2014-03-30 04:59:56 +00:00
|
|
|
pkgdesc='Open Source H265/HEVC video encoder'
|
2019-07-16 19:15:29 +00:00
|
|
|
arch=(x86_64)
|
2021-03-23 14:04:59 +00:00
|
|
|
url=https://bitbucket.org/multicoreware/x265_git
|
2019-07-16 19:15:29 +00:00
|
|
|
license=(GPL)
|
2019-10-30 17:57:56 +00:00
|
|
|
depends=(gcc-libs)
|
2019-07-16 19:15:29 +00:00
|
|
|
makedepends=(
|
|
|
|
cmake
|
2021-03-23 14:04:59 +00:00
|
|
|
git
|
2019-07-16 19:15:29 +00:00
|
|
|
nasm
|
2020-06-09 18:55:00 +00:00
|
|
|
ninja
|
2019-07-16 19:15:29 +00:00
|
|
|
)
|
|
|
|
provides=(libx265.so)
|
2024-11-08 01:39:21 +00:00
|
|
|
_tag=6318f223684118a2c71f67f3f4633a9e35046b00
|
2024-06-21 23:39:23 +00:00
|
|
|
source=(git+https://bitbucket.org/multicoreware/x265_git#tag=${_tag})
|
2024-11-08 01:39:21 +00:00
|
|
|
sha256sums=('633998b9f17d335c24b3ac34eb446ac376971ce7323ef9befb86d134ee3e6453')
|
2014-03-30 04:59:56 +00:00
|
|
|
|
2019-10-30 17:57:56 +00:00
|
|
|
pkgver() {
|
2021-03-23 14:04:59 +00:00
|
|
|
cd x265_git
|
2019-10-30 17:57:56 +00:00
|
|
|
|
2021-03-23 14:04:59 +00:00
|
|
|
git describe --tags
|
2019-10-30 17:57:56 +00:00
|
|
|
}
|
|
|
|
|
2014-03-30 04:59:56 +00:00
|
|
|
build() {
|
2021-03-23 14:04:59 +00:00
|
|
|
cmake -S x265_git/source -B build -G Ninja \
|
2019-07-16 19:15:29 +00:00
|
|
|
-DCMAKE_INSTALL_PREFIX=/usr \
|
2022-02-07 04:03:59 +00:00
|
|
|
-DENABLE_SHARED=TRUE
|
2020-06-09 18:55:00 +00:00
|
|
|
ninja -C build
|
2014-03-30 04:59:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2020-06-09 18:55:00 +00:00
|
|
|
DESTDIR="${pkgdir}" ninja -C build install
|
2014-03-30 04:59:56 +00:00
|
|
|
}
|
2018-03-09 19:09:33 +00:00
|
|
|
|
|
|
|
# vim: ts=2 sw=2 et:
|