libde265: initial import, v1.0.11

This commit is contained in:
John McQuah 2023-03-04 22:15:43 -05:00
parent 91a637b759
commit 2e6780daaa
3 changed files with 44 additions and 0 deletions

18
libde265/.footprint Normal file
View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/dec265
-rwxr-xr-x root/root usr/bin/hdrcopy
drwxr-xr-x root/root usr/include/
drwxr-xr-x root/root usr/include/libde265/
-rw-r--r-- root/root usr/include/libde265/de265-version.h
-rw-r--r-- root/root usr/include/libde265/de265.h
-rw-r--r-- root/root usr/include/libde265/en265.h
drwxr-xr-x root/root usr/lib/
drwxr-xr-x root/root usr/lib/cmake/
drwxr-xr-x root/root usr/lib/cmake/libde265/
-rw-r--r-- root/root usr/lib/cmake/libde265/libde265Config-release.cmake
-rw-r--r-- root/root usr/lib/cmake/libde265/libde265Config.cmake
-rw-r--r-- root/root usr/lib/cmake/libde265/libde265ConfigVersion.cmake
-rwxr-xr-x root/root usr/lib/libde265.so
drwxr-xr-x root/root usr/lib/pkgconfig/
-rw-r--r-- root/root usr/lib/pkgconfig/libde265.pc

5
libde265/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF38PB5r37gAd6GCXsrFmR6wpuduJyzY1uaOcQ9u3neIwsRXpn6VbepDa6QirQcb/ffzRp4vAjqrrcIr9PU+UwAwk=
SHA256 (Pkgfile) = 6751c697706e5757a2b6d868ca4d96eef8dab0b84724e71d626360ff4198c6a6
SHA256 (.footprint) = 6b5f374d22d5b2470893e2d102d1ea9a11567e0f38177ecfe1b9b4d9b864cd60
SHA256 (libde265-1.0.11.tar.gz) = 2f8f12cabbdb15e53532b7c1eb964d4e15d444db1be802505e6ac97a25035bab

21
libde265/Pkgfile Normal file
View File

@ -0,0 +1,21 @@
# Description: h.265 video codec implementation
# URL: https://github.com/strukturag/libde265
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on:
name=libde265
version=1.0.11
release=1
source=(https://github.com/strukturag/$name/releases/download/v$version/$name-$version.tar.gz)
build() {
mkdir build && cd build
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_C_FLAGS="$CFLAGS" \
../$name-$version
ninja -j ${JOBS:-1}
DESTDIR=$PKG ninja install
}