summaryrefslogtreecommitdiff
path: root/user/x264/APKBUILD
blob: 2ae88e2eb3880da7e4ea800bd5bbb0692ee09564 (plain) (blame)
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
44
45
46
47
48
49
50
51
# Maintainer: 
pkgname=x264
pkgver=20191105
pkgrel=0
pkgdesc="Library for encoding H264/AVC video streams"
url="https://www.videolan.org/developers/x264.html"
arch="all"
options="textrels"
license="GPL-2.0+"
depends=""
makedepends="bash coreutils libx11-dev perl"
case $CTARGET_ARCH in
	x86_64) makedepends="$makedepends nasm";;
esac
subpackages="$pkgname-dev $pkgname-libs"
source="https://download.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245-stable.tar.bz2"
builddir="$srcdir/$pkgname-snapshot-$pkgver-2245-stable"

build() {
	_asmopts=""
	case "$CARCH" in
		# ppc requires AltiVec, we run on G3s
		ppc | pmmx) _asmopts="--disable-asm" ;;
		# VSX was added in power8
		ppc64) _asmopts="--disable-vsx" ;;
	esac

	# note: not autotools
	CFLAGS="$(printf '%s' "$CFLAGS" | sed 's/-Os//')" \
	./configure \
		--host=$CHOST \
		--prefix=/usr \
		--enable-shared \
		--enable-static \
		$_asmopts \
		--enable-pic \
		--extra-cflags=-fno-aggressive-loop-optimizations
	make
}

check() {
	./x264 --version
}

package() {
	make DESTDIR="$pkgdir" \
		bindir=/usr/bin libdir=/usr/lib includedir=/usr/include \
		install
}

sha512sums="5a5bc2bd322af8544a6e7d89d6c56d1b609f8a69e177b20964fda1b5c8ad3a0ca77ff00b8ec47412a0c069afac677300c1d26aaaa704cf9be93df27f189171d3  x264-snapshot-20191105-2245-stable.tar.bz2"