mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-10 14:44:36 +08:00
68 lines
1.6 KiB
Bash
68 lines
1.6 KiB
Bash
pkgname=('x264' 'libx264' 'libx264-10bit')
|
|
pkgver=148.20160920
|
|
pkgrel=1
|
|
epoch=1
|
|
arch=('x86_64')
|
|
url='http://www.videolan.org/developers/x264.html'
|
|
license=('GPL')
|
|
depends=('glibc')
|
|
makedepends=('yasm' 'git' 'ffmpeg' 'l-smash')
|
|
_commit=86b71982e131eaa70125f8d0e725fcade9c4c677
|
|
source=(git://git.videolan.org/x264.git#commit=${_commit})
|
|
md5sums=('SKIP')
|
|
|
|
pkgver() {
|
|
cd $pkgbase
|
|
local _ver=$(grep '#define X264_BUILD' x264.h | cut -d' ' -f3)
|
|
local _date=$(git log -1 --format="%cd" --date=short | tr -d -)
|
|
|
|
echo ${_ver}.${_date}
|
|
}
|
|
|
|
prepare() {
|
|
cp -r $pkgbase $pkgbase-10bit
|
|
}
|
|
|
|
build() {
|
|
cd $pkgbase
|
|
./configure --prefix=/usr \
|
|
--enable-shared --enable-pic
|
|
make
|
|
|
|
cd ../$pkgbase-10bit
|
|
./configure --prefix=/usr \
|
|
--enable-shared --enable-pic \
|
|
--bit-depth=10
|
|
make
|
|
}
|
|
|
|
package_x264() {
|
|
pkgdesc='CLI tools for encoding H264/AVC video streams'
|
|
depends=('ffmpeg' 'liblsmash.so')
|
|
provides=('x264-10bit')
|
|
conflicts=('x264-10bit')
|
|
replaces=('x264-10bit')
|
|
|
|
make -C $pkgbase DESTDIR="$pkgdir" install-cli
|
|
install -Dm755 $pkgbase-10bit/x264 "$pkgdir"/usr/bin/x264-10bit
|
|
}
|
|
|
|
package_libx264() {
|
|
pkgdesc='Library for encoding H264/AVC video streams'
|
|
provides=('libx264.so' 'x264-dev')
|
|
conflicts=('x264-dev')
|
|
replaces=('x264-dev')
|
|
|
|
install -d "$pkgdir"/usr/lib
|
|
make -C $pkgbase DESTDIR="$pkgdir" install-lib-shared
|
|
}
|
|
|
|
package_libx264-10bit() {
|
|
pkgdesc='Library for encoding H264/AVC video streams. 10bit-depth.'
|
|
provides=('libx264.so' 'libx264' 'x264-dev')
|
|
conflicts=('libx264' 'x264-dev')
|
|
|
|
install -d "$pkgdir"/usr/lib
|
|
make -C $pkgbase-10bit DESTDIR="$pkgdir" install-lib-shared
|
|
}
|