mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
Added x264
This commit is contained in:
parent
ee6ee4a5b8
commit
c247520838
1 changed files with 33 additions and 0 deletions
33
extra/x264/PKGBUILD
Executable file
33
extra/x264/PKGBUILD
Executable file
|
@ -0,0 +1,33 @@
|
|||
# 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:
|
Loading…
Reference in a new issue