summaryrefslogtreecommitdiff
path: root/user/x264/APKBUILD
blob: 81412a1bbc45bff8d727823e696fe8e6371180de (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
52
53
# Maintainer: 
pkgname=x264
pkgver=20170930
pkgrel=0
pkgdesc="Library for encoding H264/AVC video streams"
url="https://www.videolan.org/developers/x264.html"
arch="all"
license="GPL-2.0+"
options="textrels"
makedepends="bash coreutils libx11-dev perl"
[ $CARCH == x86_64 ] && makedepends="$makedepends yasm"
subpackages="$pkgname-dev $pkgname-libs"
source="ftp://ftp.videolan.org/pub/x264/snapshots/x264-snapshot-$pkgver-2245-stable.tar.bz2"
builddir="$srcdir/$pkgname-snapshot-$pkgver-2245-stable"

build() {
	cd "$builddir"

	local asmopts=
	case "$CARCH" in
		# ppc requires AltiVec, we run on G3s
		ppc) asmopts="--disable-asm" ;;
		# VSX was added in power8
		ppc64) asmopts="--disable-vsx" ;;
	esac

	# note: not autotools
	CFLAGS="${CFLAGS/-Os/}" ./configure \
		--host=$CHOST \
		--prefix=/usr \
		--enable-shared \
		--enable-static \
		$asmopts \
		--enable-pic \
		--extra-cflags=-fno-aggressive-loop-optimizations
	make
}

check() {
	cd "$builddir"

	./x264 --version
}

package() {
	cd "$builddir"

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

sha512sums="7f0d33f2955dbc8958ad739cfe69b9083ea376d21a4af469a6a44c8db8089859cf0a94018a1cdea49ce4c3b4a1b635cc304208d0492d901fd99a1337ac2c5d57  x264-snapshot-20170930-2245-stable.tar.bz2"