aboutsummaryrefslogtreecommitdiffstats
path: root/main/x265/APKBUILD
blob: 0cf29787be1d6408298b578f9e7458c0030754d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# Contributor: Carlo Landmeter <clandmeter@gmail.com>
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=x265
pkgver=2.3
pkgrel=0
pkgdesc="Open Source H265/HEVC video encoder"
url="https://bitbucket.org/multicoreware/x265"
arch="all"
license="GPL"
depends=""
depends_dev=""
makedepends="$depends_dev cmake yasm"
install=""
subpackages="$pkgname-dev"
source="$pkgname-$pkgver.tar.gz::https://bitbucket.org/multicoreware/$pkgname/downloads/${pkgname}_${pkgver}.tar.gz"

_builddir="$srcdir"/x265_$pkgver
prepare() {
	local i
	cd "$_builddir"
	for i in $source; do
		case $i in
		*.patch) msg $i; patch -p1 -i "$srcdir"/$i || return 1;;
		esac
	done
}

build() {
	cd "$_builddir"/build/linux
	local CMAKE_OPS="-DCMAKE_INSTALL_PREFIX=/usr"
	# has textrel on x86 so we disable asm
	if [ "$CARCH" = x86 ] ; then
		CMAKE_OPS="$CMAKE_OPS -DENABLE_ASSEMBLY=OFF"
	fi
	cmake -G "Unix Makefiles" $CMAKE_OPS ../../source
}

package() {
	cd "$_builddir"/build/linux
	make DESTDIR="$pkgdir" install || return 1
}

sha512sums="c863e4bd95323baf5c1ee388c2d9e460749940b947a795e0bce7bffab620258fb7aafbbf2956225491f4532f715392df3d40f19301964e00c3ac2971cd7d8809  x265-2.3.tar.gz"