mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2025-02-16 23:57:11 +00:00
Added extra/x264
This commit is contained in:
parent
6dd5220d5f
commit
da4ca3756d
1 changed files with 36 additions and 0 deletions
36
extra/x264/PKGBUILD
Normal file
36
extra/x264/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
# $Id: PKGBUILD 106279 2011-01-16 13:56:10Z 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=20110115
|
||||
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=('c977e56dac340bc5145a3ecce9a45aef')
|
||||
|
||||
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:
|
Loading…
Reference in a new issue