mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 19:47:13 +08:00
70 lines
1.5 KiB
Bash
70 lines
1.5 KiB
Bash
# Maintainer: Giuseppe Calà <jiveaxe@gmail.com>
|
|
|
|
pkgname=x265
|
|
pkgver=2.6
|
|
pkgrel=1
|
|
pkgdesc='Open Source H265/HEVC video encoder'
|
|
arch=('x86_64')
|
|
url='https://bitbucket.org/multicoreware/x265'
|
|
license=('GPL')
|
|
depends=('gcc-libs')
|
|
makedepends=('yasm' 'cmake')
|
|
provides=('libx265.so')
|
|
source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz")
|
|
md5sums=('4d318be1f19b58985432a144bd054572')
|
|
|
|
prepare() {
|
|
cd x265_v${pkgver}
|
|
|
|
for d in 8 10 12; do
|
|
if [[ -d build-$d ]]; then
|
|
rm -rf build-$d
|
|
fi
|
|
mkdir build-$d
|
|
done
|
|
}
|
|
|
|
build() {
|
|
cd x265_v${pkgver}/build-12
|
|
|
|
cmake ../source \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DHIGH_BIT_DEPTH='TRUE' \
|
|
-DMAIN12='TRUE' \
|
|
-DEXPORT_C_API='FALSE' \
|
|
-DENABLE_CLI='FALSE' \
|
|
-DENABLE_SHARED='FALSE'
|
|
make
|
|
|
|
cd ../build-10
|
|
|
|
cmake ../source \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DHIGH_BIT_DEPTH='TRUE' \
|
|
-DEXPORT_C_API='FALSE' \
|
|
-DENABLE_CLI='FALSE' \
|
|
-DENABLE_SHARED='FALSE'
|
|
make
|
|
|
|
cd ../build-8
|
|
|
|
ln -s ../build-10/libx265.a libx265_main10.a
|
|
ln -s ../build-12/libx265.a libx265_main12.a
|
|
|
|
cmake ../source \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DENABLE_SHARED='TRUE' \
|
|
-DENABLE_HDR10_PLUS='TRUE' \
|
|
-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
|
|
-DEXTRA_LINK_FLAGS='-L .' \
|
|
-DLINKED_10BIT='TRUE' \
|
|
-DLINKED_12BIT='TRUE'
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd x265_v${pkgver}/build-8
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|