PKGBUILDs/extra/x265/PKGBUILD

96 lines
2.2 KiB
Bash
Raw Normal View History

2014-03-30 04:59:56 +00:00
# $Id$
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
2017-12-19 22:26:20 +00:00
# - retain 10/12 bit separation for AArch64
2014-03-30 04:59:56 +00:00
pkgname=x265
2017-12-19 22:26:20 +00:00
pkgver=2.6
2016-12-28 13:39:08 +00:00
pkgrel=1
2014-03-30 04:59:56 +00:00
pkgdesc='Open Source H265/HEVC video encoder'
2017-12-19 22:26:20 +00:00
arch=('x86_64')
2015-04-10 15:02:36 +00:00
url='https://bitbucket.org/multicoreware/x265'
2014-03-30 04:59:56 +00:00
license=('GPL')
depends=('gcc-libs')
makedepends=('yasm' 'cmake')
2015-04-10 15:02:36 +00:00
provides=('libx265.so')
2015-10-11 14:21:16 +00:00
source=("https://bitbucket.org/multicoreware/x265/downloads/x265_${pkgver}.tar.gz"
2014-03-30 04:59:56 +00:00
arm.patch)
2017-12-19 22:26:20 +00:00
sha256sums=('1bf0036415996af841884802161065b9e6be74f5f6808ac04831363e2549cdbf'
2016-12-28 13:39:08 +00:00
'c3e80d7261d5fef72bfea5c5dd4613c1e997315dc7d0d9465f99356287a8d46b')
2014-03-30 04:59:56 +00:00
prepare() {
2017-12-19 22:26:20 +00:00
cd x265_v${pkgver}
2015-10-11 14:21:16 +00:00
2014-03-30 04:59:56 +00:00
patch -p1 -i ../arm.patch
2016-07-23 15:53:32 +00:00
[[ $CARCH == "aarch64" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC"
[[ $CARCH == "arm" ]] && CONFIG="-DENABLE_ASSEMBLY=OFF"
2015-10-11 14:21:16 +00:00
2017-12-19 22:26:20 +00:00
for d in 8 $([[ $CARCH == 'aarch64' ]] && echo "10 12"); do
2015-10-11 14:21:16 +00:00
if [[ -d build-$d ]]; then
rm -rf build-$d
fi
mkdir build-$d
done
2014-03-30 04:59:56 +00:00
}
build() {
2017-12-19 22:26:20 +00:00
if [[ $CARCH == aarch64 ]]; then
2015-10-11 14:21:16 +00:00
2017-12-19 22:26:20 +00:00
cd x265_v${pkgver}/build-12
2015-10-11 14:21:16 +00:00
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' \
2017-08-15 12:26:44 +00:00
-DENABLE_HDR10_PLUS='TRUE' \
2015-10-11 14:21:16 +00:00
-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
2017-12-19 22:26:20 +00:00
-DEXTRA_LINK_FLAGS='-L .' \
2015-10-11 14:21:16 +00:00
-DLINKED_10BIT='TRUE' \
-DLINKED_12BIT='TRUE'
make
else
2017-12-19 22:26:20 +00:00
cd x265_v${pkgver}/build-8
2015-10-11 14:21:16 +00:00
cmake ../source \
-DCMAKE_INSTALL_PREFIX='/usr' \
2016-07-23 15:53:32 +00:00
-DENABLE_SHARED='TRUE' \
$CONFIG
2015-10-11 14:21:16 +00:00
fi
2014-03-30 04:59:56 +00:00
}
package() {
2017-12-19 22:26:20 +00:00
cd x265_v${pkgver}/build-8
2015-10-11 14:21:16 +00:00
make DESTDIR="${pkgdir}" install
2014-03-30 04:59:56 +00:00
}