diff options
author | Danny Rawlins <monster.romster@gmail.com> | 2016-08-08 20:02:50 +1000 |
---|---|---|
committer | Danny Rawlins <monster.romster@gmail.com> | 2016-08-08 20:46:12 +1000 |
commit | adb5ad85ebc0dd34691f2681f0be9f5d3b9c79ca (patch) | |
tree | bd75e1784579c7a32e29ece3e906f66b6c6175e0 /x264 | |
parent | a3f6311a04d30fbb649ca09c3f41fcf25dd15d5b (diff) | |
download | contrib-adb5ad85ebc0dd34691f2681f0be9f5d3b9c79ca.tar.gz contrib-adb5ad85ebc0dd34691f2681f0be9f5d3b9c79ca.tar.xz |
x264: 148.20160103 -> 148.20160808 enable 10bit depth
Diffstat (limited to 'x264')
-rw-r--r-- | x264/.footprint | 2 | ||||
-rw-r--r-- | x264/.md5sum | 2 | ||||
-rw-r--r-- | x264/Pkgfile | 9 |
3 files changed, 7 insertions, 6 deletions
diff --git a/x264/.footprint b/x264/.footprint index dfc850b98..b43a8f049 100644 --- a/x264/.footprint +++ b/x264/.footprint @@ -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 diff --git a/x264/.md5sum b/x264/.md5sum index 9c1c88b23..0fad64361 100644 --- a/x264/.md5sum +++ b/x264/.md5sum @@ -1 +1 @@ -69128556a7071c976220476f9720c057 x264-148.20160103-5c65704.tar.xz +59e9a3de4a8b881f7b51b0731907a482 x264-148.20160808-a5e06b9.tar.xz diff --git a/x264/Pkgfile b/x264/Pkgfile index c97b2ed43..7af472319 100644 --- a/x264/Pkgfile +++ b/x264/Pkgfile @@ -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 } |