PKGBUILDs/extra/x264/PKGBUILD

37 lines
932 B
Bash
Raw Normal View History

2011-10-11 00:42:05 +00:00
# $Id: PKGBUILD 140060 2011-10-06 07:33:33Z 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>
2011-06-24 05:05:18 +00:00
# ALARM: Kevin Mihelich <kevin@plugapps.com>
2011-01-19 00:41:46 +00:00
# - configure needs --disable-asm to build on ARM
plugrel=1
pkgname=x264
2011-10-11 00:42:05 +00:00
pkgver=20111001
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')
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245.tar.bz2)
2011-10-11 00:42:05 +00:00
md5sums=('dd67dca96ac79e7cb963bfcbf68e017b')
2011-01-19 00:41:46 +00:00
build() {
cd "$srcdir/$pkgname-snapshot-$pkgver-2245"
./configure --enable-shared --disable-asm
make
make DESTDIR="$pkgdir" \
bindir=/usr/bin \
libdir=/usr/lib \
includedir=/usr/include \
install
}
# vim:set ts=2 sw=2 et: