vp-build/srcpkgs/svt-av1/template

38 lines
1.0 KiB
Bash

# Template file for 'svt-av1'
pkgname=svt-av1
version=1.1.0
revision=1
wrksrc="SVT-AV1-v${version}"
build_style=cmake
hostmakedepends="nasm"
short_desc="AV1-compliant encoder/decoder library core"
maintainer="tibequadorian <tibequadorian@posteo.de>"
license="BSD-3-Clause-Clear"
homepage="https://gitlab.com/AOMediaCodec/SVT-AV1"
changelog="https://gitlab.com/AOMediaCodec/SVT-AV1/-/raw/master/CHANGELOG.md"
distfiles="https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v${version}/SVT-AV1-v${version}.tar.gz"
checksum=1c211b944ac83ef013fe91aee96c01289da4e3762c1e2f265449f3a964f8e4bc
if [ "$XBPS_TARGET_WORDSIZE" = "32" ]; then
broken="32-bit is not supported"
fi
libsvt-av1_package() {
short_desc+=" - library files"
pkg_install() {
vmove "usr/lib/libSvtAv1Dec.so.*"
vmove "usr/lib/libSvtAv1Enc.so.*"
vlicense LICENSE.md
}
}
libsvt-av1-devel_package() {
short_desc+=" - development files"
depends="libsvt-av1>=${version}_${revision}"
pkg_install() {
vmove usr/include
vmove usr/lib/pkgconfig
vmove "usr/lib/*.so"
}
}