mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
34 lines
917 B
Bash
34 lines
917 B
Bash
|
# Maintainer : Mike Staszel <mikestaszel@plugboxlinux.org>
|
||
|
# Contributor: damir <damir@archlinux.org>
|
||
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
||
|
|
||
|
# Plugbox changes:
|
||
|
# - Added "--disable-asm" to ./configure to work with ARMv5 CPUs.
|
||
|
|
||
|
pkgname=x264
|
||
|
pkgver=20100607
|
||
|
pkgrel=1
|
||
|
pkgdesc="free library for encoding H264/AVC video streams"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://www.videolan.org/developers/x264.html"
|
||
|
license=('GPL')
|
||
|
depends=('glibc')
|
||
|
makedepends=('yasm')
|
||
|
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245.tar.bz2)
|
||
|
md5sums=('d796cbb3eb4ce5126b861aed64d0058e')
|
||
|
|
||
|
build() {
|
||
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245" || return 1
|
||
|
|
||
|
./configure --enable-shared --disable-asm || return 1
|
||
|
|
||
|
make || return 1
|
||
|
make DESTDIR="$pkgdir" \
|
||
|
bindir=/usr/bin \
|
||
|
libdir=/usr/lib \
|
||
|
includedir=/usr/include \
|
||
|
install || return 1
|
||
|
}
|
||
|
|
||
|
# vim:set ts=2 sw=2 et:
|