2012-02-07 13:45:40 +00:00
|
|
|
# $Id: PKGBUILD 149275 2012-02-06 17:33:29Z ibiru $
|
2011-01-19 00:41:46 +00:00
|
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
|
|
# Contributor: damir <damir@archlinux.org>
|
|
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
|
2012-02-07 13:45:40 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2011-01-19 00:41:46 +00:00
|
|
|
# - configure needs --disable-asm to build on ARM
|
|
|
|
|
|
|
|
plugrel=1
|
|
|
|
|
|
|
|
pkgname=x264
|
2012-02-07 13:45:40 +00:00
|
|
|
pkgver=20120204
|
2011-01-19 00:41:46 +00:00
|
|
|
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')
|
2012-02-07 13:45:40 +00:00
|
|
|
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245-stable.tar.bz2)
|
|
|
|
md5sums=('4d793ecc4f9d308724ea47edf400f312')
|
2011-01-19 00:41:46 +00:00
|
|
|
|
|
|
|
build() {
|
2012-02-07 13:45:40 +00:00
|
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
2011-01-19 00:41:46 +00:00
|
|
|
|
|
|
|
./configure --enable-shared --disable-asm
|
|
|
|
|
|
|
|
make
|
2012-02-07 13:45:40 +00:00
|
|
|
}
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
|
2011-01-19 00:41:46 +00:00
|
|
|
make DESTDIR="$pkgdir" \
|
|
|
|
bindir=/usr/bin \
|
|
|
|
libdir=/usr/lib \
|
|
|
|
includedir=/usr/include \
|
|
|
|
install
|
|
|
|
}
|
|
|
|
|
|
|
|
# vim:set ts=2 sw=2 et:
|