void-packages/srcpkgs/svt-av1/template

37 lines
1011 B
Bash

# Template file for 'svt-av1'
pkgname=svt-av1
version=1.4.1
revision=2
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=e3f7fc194afc6c90b43e0b80fa24c09940cb03bea394e0e1f5d1ded18e9ab23f
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"
}
}