x264: 148.20160103 -> 148.20160808 enable 10bit depth

This commit is contained in:
Danny Rawlins 2016-08-08 20:02:50 +10:00
parent a3f6311a04
commit adb5ad85eb
3 changed files with 7 additions and 6 deletions

@ -1,6 +1,4 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/x264
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/x264.h
-rw-r--r-- root/root usr/include/x264_config.h

@ -1 +1 @@
69128556a7071c976220476f9720c057 x264-148.20160103-5c65704.tar.xz
59e9a3de4a8b881f7b51b0731907a482 x264-148.20160808-a5e06b9.tar.xz

@ -5,9 +5,9 @@
# Depends on: yasm
name=x264
version=148.20160103
version=148.20160808
release=1
source=(http://crux.ster.zone/downloads/$name/$name-$version-5c65704.tar.xz)
source=(http://crux.ster.zone/downloads/$name/$name-$version-a5e06b9.tar.xz)
build() {
cd $name
@ -15,9 +15,12 @@ build() {
./configure \
--prefix=/usr \
--enable-pic \
--enable-shared
--enable-shared \
--bit-depth='10' \
--disable-cli
make
make DESTDIR=$PKG install
chmod a-x $PKG/usr/lib/*.so
}