x264: 0.164.3103 -> 0.164.a8b68eb

This commit is contained in:
Tim Biermann 2023-08-06 19:57:16 +02:00
parent 30e0906de8
commit b192e9264c
Signed by: tb
GPG Key ID: 42F8B4E30B673606
2 changed files with 31 additions and 31 deletions

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF33i7dpt5sRhasXhwquA2BJarqJSIKxZHCssOAc5MK23Y38RxHtb2RRzlWlQhcYH7gVNSGqjVcF6cG7ToNGed+Q8= RWSagIOpLGJF34cL3vmebO1MtX7FfkxiDxif0kIpqZmqjzOLJny4RDaGIJL+1DU8Q0jfYjfkWA3oxbjiR/lwoy2Mlm/8MdZqugo=
SHA256 (Pkgfile) = c57da44809a1dbd063a66780bb7a50b7beeddf7830f8af4e924879053916f219 SHA256 (Pkgfile) = 2fb492d202031813d8620c0f1df3aeca8f2949117ab1c289b5a4f044bd7e124f
SHA256 (.footprint) = 05f2776b99bfa0920e34544eed831da24ef57cc3f3927af1a66bad7630645d8a SHA256 (.footprint) = 05f2776b99bfa0920e34544eed831da24ef57cc3f3927af1a66bad7630645d8a
SHA256 (x264-941cae6d1d6d6344c9a1d27440eaf2872b18ca9a.tar.bz2) = 6b872f6c0b7d2d60b010632f5214e500e27dbb5385f632b75edf3f1c4af1b638 SHA256 (x264-a8b68ebfaa68621b5ac8907610d3335971839d52.tar.bz2) = d13ce0e8381bb72ee53e42f9caa9281fb0da04ab82afdc5d4ecaad7f1c574744

View File

@ -1,45 +1,45 @@
# Description: Library for encoding H264/AVC video streams (snapshot). # Description: Library for encoding H264/AVC video streams (snapshot).
# URL: https://www.videolan.org/developers/x264.html # URL: https://www.videolan.org/developers/x264.html
# Maintainer: Danny Rawlins, crux at romster dot me # Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: yasm # Depends on: yasm
name=x264 name=x264
version=0.164.3103 version=0.164.a8b68eb
release=1 release=1
_commit=941cae6d1d6d6344c9a1d27440eaf2872b18ca9a _commit=a8b68ebfaa68621b5ac8907610d3335971839d52
source=(https://code.videolan.org/videolan/x264/-/archive/$_commit/x264-$_commit.tar.bz2) source=(https://code.videolan.org/videolan/x264/-/archive/$_commit/x264-$_commit.tar.bz2)
build() { build() {
cp -al $name-$_commit $name-10 cp -al $name-$_commit $name-10
cd $name-10 cd $name-10
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--libdir=/usr/lib/libx264-10bit \ --libdir=/usr/lib/libx264-10bit \
--includedir=/usr/lib/libx264-10bit/include \ --includedir=/usr/lib/libx264-10bit/include \
--enable-pic \ --enable-pic \
--enable-shared \ --enable-shared \
--bit-depth='10' \ --bit-depth='10' \
--disable-cli \ --disable-cli \
--disable-interlaced \ --disable-interlaced \
--extra-cflags="$CFLAGS" --extra-cflags="$CFLAGS"
make make
make DESTDIR=$PKG install-lib-shared make DESTDIR=$PKG install-lib-shared
cd $SRC/$name-$_commit cd $SRC/$name-$_commit
./configure \ ./configure \
--prefix=/usr \ --prefix=/usr \
--enable-pic \ --enable-pic \
--enable-shared \ --enable-shared \
--bit-depth='8' \ --bit-depth='8' \
--disable-cli \ --disable-cli \
--extra-cflags="$CFLAGS" --extra-cflags="$CFLAGS"
make make
make DESTDIR=$PKG install make DESTDIR=$PKG install
chmod a-x $PKG/usr/lib/*.so $PKG/usr/lib/libx264-10bit/*.so chmod a-x $PKG/usr/lib/*.so $PKG/usr/lib/libx264-10bit/*.so
} }