core/x264/PKGBUILD

32 lines
893 B
Bash
Raw Normal View History

2010-05-17 15:50:50 +08:00
# $Id: PKGBUILD 77240 2010-04-11 16:32:30Z ibiru $
2010-03-14 23:48:48 +08:00
# Maintainer : Ionut Biru <ibiru@archlinux.org>
# Contributor: damir <damir@archlinux.org>
# Contributor: Paul Mattal <paul@archlinux.org>
pkgname=x264
2010-05-17 15:50:50 +08:00
pkgver=20100410
2010-03-14 23:48:48 +08:00
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)
2010-05-17 15:50:50 +08:00
sha256sums=('7f42481ad03ffdf04e182fcc336f86e3eec6cdaffb5385ca4e713541b8705185')
2010-03-14 23:48:48 +08:00
build() {
cd "$srcdir/$pkgname-snapshot-$pkgver-2245" || return 1
./configure --enable-shared || return 1
make || return 1
make DESTDIR="$pkgdir" \
bindir=/usr/bin \
libdir=/usr/lib \
includedir=/usr/include \
install || return 1
}
# vim:set ts=2 sw=2 et: