libde265: 1.0.12 -> 1.0.14

This commit is contained in:
John McQuah 2023-11-22 07:43:32 +00:00
parent 4e9dc24512
commit 9a5918395d
3 changed files with 17 additions and 14 deletions

View File

@ -1,7 +1,7 @@
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
-rwxr-xr-x root/root usr/bin/enc265
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

View File

@ -1,5 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF3/Fc7SqBaSOrJG8elr7QQni9zLOeqP+u8Gp4drriD1q+ifN1MRBr0TljxsDIFurbD+6DVozWioCOJh9QR5iOVwY=
SHA256 (Pkgfile) = c6b3353578fcfdbbb69f4f4b11fb02e03ee93a8360a557c0a66b60307bc19cae
SHA256 (.footprint) = 6b5f374d22d5b2470893e2d102d1ea9a11567e0f38177ecfe1b9b4d9b864cd60
SHA256 (libde265-1.0.12.tar.gz) = 62185ea2182e68cf68bba20cc6eb4c287407b509cf0a827d7ddb75614db77b5c
RWSagIOpLGJF38Wr/UGk8kqMbjyHLN31NKatI1vik/2TESJJSqqXvyZxcUp49pWjr/VllqKDW665FQKCRbhJhWk+WO+9G5mvgQg=
SHA256 (Pkgfile) = b53762910a46f9fc50cb25f2204b713a75ad5965c3a4fb53582d262a640070f6
SHA256 (.footprint) = 3f3ca7a92afc427b0a3a60d879b5fbe95c9943d33b9ffcecc74a147429f29c65
SHA256 (libde265-1.0.14.tar.gz) = 99f46ef77a438be639aa3c5d9632c0670541c5ed5d386524d4199da2d30df28f

View File

@ -2,20 +2,23 @@
# URL: https://github.com/strukturag/libde265
# Maintainer: John McQuah, jmcquah at disroot dot org
# Depends on:
# Optional: libsdl2
name=libde265
version=1.0.12
version=1.0.14
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
prt-get isinst libsdl2 && PKGMK_DE2SDL=ON || PKGMK_DE2SDL=OFF
cmake -B build -S $name-$version -G Ninja \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DENABLE_ENCODER=ON \
-DENABLE_SDL=$PKGMK_DE2SDL \
-DCMAKE_C_FLAGS="$CFLAGS"
ninja -j ${JOBS:-1}
DESTDIR=$PKG ninja install
ninja -C build -j ${JOBS:-1}
DESTDIR=$PKG ninja -C build install
}