# $Id$ # Maintainer: Maxime Gauduin # Contributor: Bartłomiej Piotrowski # Contributor: kfgz # ALARM: Kevin Mihelich # - patch to attempt fixing ARM hackery by bandwagoning developers # - retain 10/12 bit separation for AArch64 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" arm.patch) sha256sums=('1bf0036415996af841884802161065b9e6be74f5f6808ac04831363e2549cdbf' 'c3e80d7261d5fef72bfea5c5dd4613c1e997315dc7d0d9465f99356287a8d46b') prepare() { cd x265_v${pkgver} patch -p1 -i ../arm.patch [[ $CARCH == "aarch64" ]] && CFLAGS+=" -fPIC" && CXXFLAGS+=" -fPIC" [[ $CARCH == "arm" ]] && CONFIG="-DENABLE_ASSEMBLY=OFF" for d in 8 $([[ $CARCH == 'aarch64' ]] && echo "10 12"); do if [[ -d build-$d ]]; then rm -rf build-$d fi mkdir build-$d done } build() { if [[ $CARCH == aarch64 ]]; then 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 else cd x265_v${pkgver}/build-8 cmake ../source \ -DCMAKE_INSTALL_PREFIX='/usr' \ -DENABLE_SHARED='TRUE' \ $CONFIG fi } package() { cd x265_v${pkgver}/build-8 make DESTDIR="${pkgdir}" install }