contrib/dav1d/Pkgfile

22 lines
546 B
Plaintext
Raw Normal View History

2021-01-08 00:30:41 +01:00
# Description: dav1d is an AV1 decoder
# URL: https://code.videolan.org/videolan/dav1d/
# Maintainer: Tim Biermann, tbier at posteo dot de
2022-01-03 14:41:08 +01:00
# Depends on: vulkan-loader
2021-01-08 00:30:41 +01:00
name=dav1d
2021-09-05 12:16:09 +02:00
version=0.9.2
2021-01-08 00:30:41 +01:00
release=1
source=(https://code.videolan.org/videolan/dav1d/-/archive/$version/$name-$version.tar.gz)
build() {
meson setup $name-$version build \
--prefix=/usr \
--buildtype=plain \
2022-01-03 14:41:08 +01:00
--wrap-mode nodownload \
-D b_lto=true \
-D b_pie=true \
2021-01-08 00:30:41 +01:00
-D enable_tests=false
meson compile -C build
DESTDIR=$PKG meson install -C build
}