mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
69 lines
1.3 KiB
Bash
69 lines
1.3 KiB
Bash
# Maintainer: Maxime Gauduin <alucryd@archlinux.org>
|
|
# Contributor: Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - configure needs --disable-asm to build on non-AArch64
|
|
# - --disable-lto
|
|
|
|
pkgname=x264
|
|
pkgver=0.160.r3011.cde9a93
|
|
pkgrel=1
|
|
epoch=3
|
|
pkgdesc='Open Source H264/AVC video encoder'
|
|
arch=(x86_64)
|
|
url=https://www.videolan.org/developers/x264.html
|
|
license=(GPL)
|
|
depends=(
|
|
liblsmash.so
|
|
)
|
|
makedepends=(
|
|
git
|
|
l-smash
|
|
nasm
|
|
)
|
|
provides=(
|
|
libx264
|
|
libx264.so
|
|
)
|
|
conflicts=(
|
|
libx264
|
|
libx264-10bit
|
|
libx264-all
|
|
)
|
|
replaces=(
|
|
libx264
|
|
libx264-10bit
|
|
libx264-all
|
|
)
|
|
_commit=cde9a93319bea766a92e306d69059c76de970190
|
|
source=(git+https://code.videolan.org/videolan/x264.git#commit=${_commit})
|
|
sha256sums=(SKIP)
|
|
|
|
pkgver() {
|
|
cd x264
|
|
|
|
./version.sh | grep X264_POINTVER | sed -r 's/^#define X264_POINTVER "([0-9]+\.[0-9]+)\.([0-9]+) (.*)"$/\1.r\2.\3/'
|
|
}
|
|
|
|
build() {
|
|
cd x264
|
|
|
|
[[ $CARCH != "aarch64" ]] && CONFIG="--disable-asm"
|
|
|
|
./configure \
|
|
--prefix=/usr \
|
|
--enable-shared \
|
|
--enable-pic \
|
|
--disable-lto \
|
|
--disable-avs $CONFIG
|
|
make
|
|
}
|
|
|
|
package() {
|
|
make -C x264 DESTDIR="${pkgdir}" install-cli install-lib-shared
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|