summaryrefslogtreecommitdiff
path: root/extra/x264/PKGBUILD
blob: 775010075224bb06dd833daadfc9d222973eaea6 (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
38
39
40
41
# $Id: PKGBUILD 191968 2013-08-02 08:00:53Z bpiotrowski $
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: damir <damir@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>

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

pkgver() {
  cd $pkgname
  git log -1 --format="%cd" --date=short | sed 's|-||g'
}

build() {
  cd $pkgname

  ./configure --enable-shared \
    --enable-pic
  make
}

package() {
  cd $pkgname

  make DESTDIR="$pkgdir" \
    bindir=/usr/bin \
    libdir=/usr/lib \
    includedir=/usr/include \
    install
}

# vim:set ts=2 sw=2 et: