blob: c482e04153a26f29533ecc5fd028f45619fea1c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
# $Id: PKGBUILD 36085 2009-04-19 22:58:09Z eric $
# Contributor: damir <damir@archlinux.org>
# Maintainer: Paul Mattal <paul@archlinux.org>
pkgname=x264
pkgver=20110803
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')
optdepends=('gpac: For gpac support')
makedepends=('yasm' 'gpac')
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-${pkgver}-2245.tar.bz2)
build() {
cd "${srcdir}/${pkgname}-snapshot-${pkgver}-2245" || return 1
./configure \
--enable-visualize \
--enable-shared \
--enable-pic || return 1
make || return 1
}
package() {
cd "${srcdir}/${pkgname}-snapshot-${pkgver}-2245" || return 1
make DESTDIR="${pkgdir}" \
bindir=/usr/bin \
libdir=/usr/lib \
includedir=/usr/include \
install || return 1
}
# vim:set ts=2 sw=2 et:
md5sums=('6148c89b85b1136e8047882037a57c07')
|