37 lines
1 KiB
Bash
37 lines
1 KiB
Bash
# Template file for 'svt-av1'
|
|
pkgname=svt-av1
|
|
version=0.9.1
|
|
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=714154c08a90a5eb1f09c4d0d766621132711137af127468dc122c04ca9784ae
|
|
|
|
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"
|
|
}
|
|
}
|