mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
38 lines
1,009 B
Bash
38 lines
1,009 B
Bash
# $Id: PKGBUILD 149275 2012-02-06 17:33:29Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# 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=20120705
|
|
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-stable.tar.bz2)
|
|
md5sums=('81e5bec5d5774a4a3f567f14bd94289c')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
./configure --enable-shared --disable-asm
|
|
|
|
make
|
|
}
|
|
package() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
make DESTDIR="$pkgdir" \
|
|
bindir=/usr/bin \
|
|
libdir=/usr/lib \
|
|
includedir=/usr/include \
|
|
install
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|