aports/main/libde265/APKBUILD
2023-06-13 21:29:29 +02:00

96 lines
2.5 KiB
Plaintext

# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=libde265
pkgver=1.0.12
pkgrel=0
pkgdesc="Open h.265 video codec implementation"
url="https://github.com/strukturag/libde265"
arch="all"
license="LGPL-3.0-or-later"
makedepends="autoconf automake libtool"
options="!check" # no tests provided
subpackages="$pkgname-dev $pkgname-examples"
source="https://github.com/strukturag/libde265/releases/download/v$pkgver/libde265-$pkgver.tar.gz
export-only-decoder-api.patch
disable_tools.patch
"
# secfixes:
# 1.0.11-r1:
# - CVE-2023-27102
# - CVE-2023-27103
# 1.0.11-r0:
# - CVE-2020-21594
# - CVE-2020-21595
# - CVE-2020-21596
# - CVE-2020-21597
# - CVE-2020-21598
# - CVE-2020-21599
# - CVE-2020-21600
# - CVE-2020-21601
# - CVE-2020-21602
# - CVE-2020-21603
# - CVE-2020-21604
# - CVE-2020-21605
# - CVE-2020-21606
# - CVE-2022-43236
# - CVE-2022-43237
# - CVE-2022-43238
# - CVE-2022-43239
# - CVE-2022-43240
# - CVE-2022-43241
# - CVE-2022-43242
# - CVE-2022-43243
# - CVE-2022-43244
# - CVE-2022-43245
# - CVE-2022-43248
# - CVE-2022-43249
# - CVE-2022-43250
# - CVE-2022-43252
# - CVE-2022-43253
# - CVE-2022-47655
# 1.0.8-r2:
# - CVE-2021-35452
# - CVE-2021-36408
# - CVE-2021-36410
# - CVE-2021-36411
# - CVE-2022-1253
prepare() {
default_prepare
autoreconf -fvi
}
build() {
# This is en/decoder, so performance matters more than size.
export CPPFLAGS="${CPPFLAGS/-Os/-O2}"
export CXXFLAGS="${CXXFLAGS/-Os/-O2}"
./configure \
--build="$CBUILD" \
--host="$CHOST" \
--prefix=/usr \
--mandir=/usr/share/man \
--disable-sherlock265
make
}
package() {
make DESTDIR="$pkgdir" install
# The upstream do the same in their Ubuntu/PPA packages.
mv "$pkgdir"/usr/bin/dec265 "$pkgdir"/usr/bin/libde265-dec265
}
examples() {
pkgdesc="$pkgdesc (examples)"
depends="$pkgname=$pkgver-r$pkgrel"
amove usr/bin/*
}
sha512sums="
2cd105f3ce15a075da758f5429670b78ec162217017d1057eb828d7bc45414d35f2a8ab3b2cd5f247320c361740f4ab92d2ce5a6d943feeb33dc28c273e1ed64 libde265-1.0.12.tar.gz
f7bd3799f4e4440e7efb98671eca425a5926dd526f8b1147cee2e49b1995853f67b63287c12739ef8ea680713af903517820f83f7f88eac6459f37bae01b4d50 export-only-decoder-api.patch
1f12bf8c7f52932ab8a205996b4439afb75baf9bd6aab13126791f281784f5c7f1b3e20f9c20cfb0ab889b8643da5737a51d5571b54a3a8733ff5da835564eca disable_tools.patch
"