2013-11-17 18:42:39 +00:00
|
|
|
# $Id$
|
|
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
2014-03-29 16:21:56 +00:00
|
|
|
# Maintainer: Bartłomiej Piotrowski <bpiotrowski@archlinux.org>
|
2011-01-19 00:41:46 +00:00
|
|
|
# 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
|
|
|
|
|
|
|
|
pkgname=x264
|
2014-03-29 16:21:56 +00:00
|
|
|
pkgver=142.20140311
|
|
|
|
pkgrel=1
|
|
|
|
epoch=1
|
2013-11-17 18:42:39 +00:00
|
|
|
pkgdesc='Library for encoding H264/AVC video streams'
|
2011-01-19 00:41:46 +00:00
|
|
|
arch=('i686' 'x86_64')
|
2013-11-17 18:42:39 +00:00
|
|
|
url='http://www.videolan.org/developers/x264.html'
|
2011-01-19 00:41:46 +00:00
|
|
|
license=('GPL')
|
|
|
|
depends=('glibc')
|
2013-02-17 00:16:48 +00:00
|
|
|
makedepends=('yasm' 'git')
|
2014-03-29 16:21:56 +00:00
|
|
|
source=(git://git.videolan.org/x264.git#commit=aff928d2)
|
2013-08-01 13:02:31 +00:00
|
|
|
md5sums=('SKIP')
|
2011-01-19 00:41:46 +00:00
|
|
|
|
2014-03-29 16:21:56 +00:00
|
|
|
pkgver() {
|
|
|
|
cd $pkgname
|
|
|
|
local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
|
|
|
|
local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
|
|
|
|
|
|
|
|
echo ${_ver}.${_date}
|
|
|
|
}
|
|
|
|
|
2013-08-01 13:02:31 +00:00
|
|
|
build() {
|
|
|
|
cd $pkgname
|
|
|
|
|
2013-12-13 14:02:36 +00:00
|
|
|
./configure --prefix=/usr \
|
|
|
|
--enable-shared \
|
2014-03-29 16:21:56 +00:00
|
|
|
--enable-pic \
|
|
|
|
--disable-asm
|
|
|
|
|
2013-08-01 13:02:31 +00:00
|
|
|
make
|
2012-02-07 13:45:40 +00:00
|
|
|
}
|
2013-08-01 13:02:31 +00:00
|
|
|
|
2012-02-07 13:45:40 +00:00
|
|
|
package() {
|
2014-03-29 16:21:56 +00:00
|
|
|
make -C $pkgname DESTDIR="$pkgdir" install
|
2011-01-19 00:41:46 +00:00
|
|
|
}
|