# $Id$ # Maintainer: Bartłomiej Piotrowski # Contributor: kfgz # ALARM: Kevin Mihelich # - patch to attempt fixing ARM hackery by bandwagoning developers pkgname=x265 pkgver=1.5 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=('fcb81f5ff12669ff0c0657568cee36b9' '9c773543b7a1f2b54f02f588725a8201') 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 }