blob: 4c8b772a0f887d26d68ce73ec068c2572c938238 (
plain) (
tree)
|
|
# 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"
case $CTARGET_ARCH in
x86_64) makedepends="$makedepends yasm";;
esac
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 | 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() {
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"
|