summaryrefslogtreecommitdiff
path: root/extra/x264/PKGBUILD
blob: 6f6b9ff5cd2e3d023082da2b517b17fe4f7ab5be (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
# $Id: PKGBUILD 201499 2013-12-13 07:56:25Z bpiotrowski $
# Maintainer:  Ionut Biru <ibiru@archlinux.org>
# Maintainer:  Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
# Contributor: damir <damir@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>

pkgname=x264
pkgver=20131030
pkgrel=2
pkgdesc='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' 'git')
source=(git://git.videolan.org/x264.git#commit=c628e3bac)
md5sums=('SKIP')

build() {
  cd $pkgname

  ./configure --prefix=/usr \
    --enable-shared \
    --enable-pic

  make
}

package() {
  cd $pkgname
  make DESTDIR="$pkgdir" install
}