33 lines
948 B
Bash
33 lines
948 B
Bash
# Template file for 'dav1d'
|
|
pkgname=dav1d
|
|
version=0.8.1
|
|
revision=1
|
|
build_style=meson
|
|
configure_args="-Denable_tests=true -Denable_asm=true -Denable_tools=true
|
|
-Dfuzzing_engine=none -Dtestdata_tests=false"
|
|
hostmakedepends="nasm"
|
|
short_desc="Small and fast AV1 Decoder"
|
|
maintainer="mustaqim <git@mustaqim.ml>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://code.videolan.org/videolan/dav1d"
|
|
changelog="https://code.videolan.org/videolan/dav1d/raw/master/NEWS"
|
|
distfiles="https://code.videolan.org/videolan/dav1d/-/archive/${version}/dav1d-${version}.tar.bz2"
|
|
checksum=842da2945afcf54e651d17112bf2823a238e6c935a6c8dff3a8e96a2eb740269
|
|
|
|
libdav1d4_package() {
|
|
short_desc+=" - runtime library"
|
|
pkg_install() {
|
|
vmove "usr/lib/*.so.*"
|
|
vlicense COPYING
|
|
}
|
|
}
|
|
|
|
libdav1d-devel_package() {
|
|
depends="libdav1d4-${version}_${revision}"
|
|
short_desc+=" - development files"
|
|
pkg_install() {
|
|
vmove usr/include
|
|
vmove usr/lib/pkgconfig
|
|
vmove "usr/lib/*.so"
|
|
}
|
|
}
|