mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
40 lines
878 B
Bash
40 lines
878 B
Bash
# $Id$
|
|
# Maintainer: Ionut Biru <ibiru@archlinux.org>
|
|
# Maintainer: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - configure needs --disable-asm to build on ARM
|
|
|
|
pkgname=x264
|
|
pkgver=20131030
|
|
pkgrel=1
|
|
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 --enable-shared --disable-asm \
|
|
--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:
|