PKGBUILDs/extra/x265/PKGBUILD

91 lines
2 KiB
Bash
Raw Normal View History

2014-03-30 04:59:56 +00:00
# $Id$
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
2015-10-11 14:21:16 +00:00
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
# 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
pkgname=x265
2016-02-03 00:37:53 +00:00
pkgver=1.9
pkgrel=1
2014-03-30 04:59:56 +00:00
pkgdesc='Open Source H265/HEVC video encoder'
arch=('i686' '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)
2016-02-03 00:37:53 +00:00
md5sums=('f34a1c4c660ff07511365cb0983cf164'
2015-10-11 14:21:16 +00:00
'4c04f99e474df7f54f0b9db8ee1bb1f6')
2014-03-30 04:59:56 +00:00
prepare() {
2016-02-03 00:37:53 +00:00
cd x265_${pkgver}
2015-10-11 14:21:16 +00:00
2014-03-30 04:59:56 +00:00
patch -p1 -i ../arm.patch
2015-10-11 14:21:16 +00:00
for d in 8 $([[ $CARCH == 'x86_64' ]] && echo "10 12"); do
if [[ -d build-$d ]]; then
rm -rf build-$d
fi
mkdir build-$d
done
2014-03-30 04:59:56 +00:00
}
build() {
2015-10-11 14:21:16 +00:00
if [[ $CARCH == x86_64 ]]; then
2016-02-03 00:37:53 +00:00
cd x265_${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' \
-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
-DEXTRA_LINK_FLAGS='-L.' \
-DLINKED_10BIT='TRUE' \
-DLINKED_12BIT='TRUE'
make
else
2016-02-03 00:37:53 +00:00
cd x265_${pkgver}/build-8
2015-10-11 14:21:16 +00:00
cmake ../source \
-DCMAKE_INSTALL_PREFIX='/usr' \
-DENABLE_SHARED='TRUE'
fi
2014-03-30 04:59:56 +00:00
}
package() {
2016-02-03 00:37:53 +00:00
cd x265_${pkgver}/build-8
2015-10-11 14:21:16 +00:00
make DESTDIR="${pkgdir}" install
2014-03-30 04:59:56 +00:00
}