mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-04 02:27:13 +08:00
35 lines
795 B
Bash
35 lines
795 B
Bash
#
|
|
# Platform Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# maintainer abveritas@chakra-project.org
|
|
|
|
pkgname=x264
|
|
pkgver=20131109
|
|
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=('5a8740bd517f06ca37ed420c91c22f04')
|
|
|
|
build() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
./configure --enable-shared
|
|
|
|
make
|
|
}
|
|
package() {
|
|
cd "$srcdir/$pkgname-snapshot-$pkgver-2245-stable"
|
|
|
|
make DESTDIR="$pkgdir" \
|
|
bindir=/usr/bin \
|
|
libdir=/usr/lib \
|
|
includedir=/usr/include \
|
|
install
|
|
}
|
|
|