mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
90 lines
1.9 KiB
Bash
90 lines
1.9 KiB
Bash
# $Id$
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
|
# Contributor: kfgz <kfgz@interia.pl>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to attempt fixing ARM hackery by bandwagoning developers
|
|
|
|
pkgname=x265
|
|
pkgver=1.8
|
|
pkgrel=1
|
|
pkgdesc='Open Source H265/HEVC video encoder'
|
|
arch=('i686' '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)
|
|
md5sums=('8b7ef9bc0b5bd26965d05a4508effeed'
|
|
'4c04f99e474df7f54f0b9db8ee1bb1f6')
|
|
|
|
prepare() {
|
|
cd x265_11047
|
|
|
|
patch -p1 -i ../arm.patch
|
|
|
|
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
|
|
}
|
|
|
|
build() {
|
|
if [[ $CARCH == x86_64 ]]; then
|
|
|
|
cd x265_11047/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' \
|
|
-DEXTRA_LIB='x265_main10.a;x265_main12.a' \
|
|
-DEXTRA_LINK_FLAGS='-L.' \
|
|
-DLINKED_10BIT='TRUE' \
|
|
-DLINKED_12BIT='TRUE'
|
|
make
|
|
|
|
else
|
|
|
|
cd x265_11047/build-8
|
|
|
|
cmake ../source \
|
|
-DCMAKE_INSTALL_PREFIX='/usr' \
|
|
-DENABLE_SHARED='TRUE'
|
|
|
|
fi
|
|
}
|
|
|
|
package() {
|
|
cd x265_11047/build-8
|
|
|
|
make DESTDIR="${pkgdir}" install
|
|
}
|