mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-11 04:54:36 +08:00
32 lines
893 B
Bash
32 lines
893 B
Bash
|
# $Id: PKGBUILD 72265 2010-03-13 21:55:31Z ibiru $
|
||
|
# Maintainer : Ionut Biru <ibiru@archlinux.org>
|
||
|
# Contributor: damir <damir@archlinux.org>
|
||
|
# Contributor: Paul Mattal <paul@archlinux.org>
|
||
|
|
||
|
pkgname=x264
|
||
|
pkgver=20100312
|
||
|
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=('89c15d9a7c5fdc3117969c3c7edd5e3c797d57319ecb549818ea2e90a1016d85')
|
||
|
|
||
|
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:
|