mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 18:17:14 +08:00
33 lines
780 B
Bash
33 lines
780 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer almack
|
|
|
|
pkgname=x264
|
|
pkgver=20141218
|
|
pkgrel=1
|
|
pkgdesc="free library for encoding H264/AVC video streams"
|
|
arch=('x86_64')
|
|
url="http://www.videolan.org/developers/x264.html"
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
makedepends=('yasm' 'libvpx>=1.1.0')
|
|
source=("ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-$pkgver-2245-stable.tar.bz2")
|
|
md5sums=('f82e4f39453ba8f25a9b614a96741ee3')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
./configure --enable-shared \
|
|
--prefix=/usr \
|
|
--enable-pic \
|
|
--bit-depth=10
|
|
make
|
|
}
|
|
package() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
make DESTDIR="$pkgdir" install
|
|
}
|
|
|