mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
36 lines
935 B
Bash
36 lines
935 B
Bash
# $Id: PKGBUILD 117096 2011-03-28 18:20:15Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - configure needs --disable-asm to build on ARM
|
|
|
|
plugrel=1
|
|
|
|
pkgname=x264
|
|
pkgver=20110327
|
|
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')
|
|
makedepends=('yasm')
|
|
source=(ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245.tar.bz2)
|
|
md5sums=('7579aff8166a974a1b293cd18b9ead92')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245"
|
|
|
|
./configure --enable-shared --disable-asm
|
|
|
|
make
|
|
make DESTDIR="$pkgdir" \
|
|
bindir=/usr/bin \
|
|
libdir=/usr/lib \
|
|
includedir=/usr/include \
|
|
install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|