blob: 0ee865e6a378e2936e3bc22f8105b604b9e324a0 (
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
44
45
46
47
48
49
50
|
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=x264
pkgver=20191119
pkgrel=0
pkgdesc="Free library for encoding H264/AVC video streams"
url="http://www.videolan.org/developers/x264.html"
arch="all"
license="GPL-2.0-or-later"
makedepends="libx11-dev bash nasm coreutils perl"
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() {
cd "$builddir"
local asmopts=
case "$CARCH" in
# x86 assembly contains TEXTRELs
# arm neon assembly contains TEXTRELs
x86 | arm*) asmopts="--disable-asm"
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="972a9a2a939a275b087c10af511f3d737fbfc3daff49cd175f28406da6ebafaa4696ee362d3b84dd8ae04275812189da6929f9d987c5aa8bb216c9324cf8f55e x264-snapshot-20191119-2245-stable.tar.bz2"
|