mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
926 B
Bash
37 lines
926 B
Bash
# $Id$
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: kfgz <kfgz at interia pl>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - patch to attempt fixing ARM hackery by bandwagoning developers
|
|
|
|
pkgname=x265
|
|
pkgver=1.4
|
|
pkgrel=1
|
|
pkgdesc='Open Source H265/HEVC video encoder'
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('gcc-libs')
|
|
makedepends=('yasm' 'cmake')
|
|
url='https://bitbucket.org/multicoreware/x265'
|
|
source=($url/get/$pkgver.tar.bz2
|
|
arm.patch)
|
|
md5sums=('b37bf7bd05b198c9dd9155d60e1f7100'
|
|
'db9fa24ac05001aa88d0b1284ec3b53a')
|
|
|
|
prepare() {
|
|
cd multicoreware-x265-*
|
|
patch -p1 -i ../arm.patch
|
|
}
|
|
|
|
build() {
|
|
cd multicoreware-x265-*/build/linux
|
|
[[ $CARCH == x86_64 ]] && LDFLAGS+=',-z,noexecstack'
|
|
cmake -G "Unix Makefiles" -DCMAKE_INSTALL_PREFIX=/usr ../../source
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd multicoreware-x265-*/build/linux
|
|
make DESTDIR="$pkgdir" install
|
|
}
|