mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 23:57:13 +08:00
32 lines
893 B
Bash
32 lines
893 B
Bash
# $Id: PKGBUILD 77240 2010-04-11 16:32:30Z ibiru $
|
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
|
# Contributor: damir <damir@archlinux.org>
|
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
|
|
|
pkgname=x264
|
|
pkgver=20100410
|
|
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)
|
|
sha256sums=('7f42481ad03ffdf04e182fcc336f86e3eec6cdaffb5385ca4e713541b8705185')
|
|
|
|
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:
|