mirror of
https://github.com/void-linux/void-packages.git
synced 2025-06-05 06:33:50 +02:00
libva: add wayland build_option
This commit is contained in:
parent
c3944f9aa6
commit
a20a7a1e40
1 changed files with 9 additions and 4 deletions
|
@ -3,9 +3,11 @@ pkgname=libva
|
||||||
version=2.5.0
|
version=2.5.0
|
||||||
revision=1
|
revision=1
|
||||||
build_style=meson
|
build_style=meson
|
||||||
configure_args="-Dwith_glx=no -Dwith_wayland=yes -Dwith_egl=yes"
|
configure_args="-Dwith_glx=no $(vopt_if wayland -Dwith_wayland=yes)
|
||||||
hostmakedepends="pkg-config wayland-devel"
|
-Dwith_egl=yes"
|
||||||
makedepends="libXfixes-devel libXext-devel libdrm-devel wayland-devel"
|
hostmakedepends="pkg-config $(vopt_if wayland wayland-devel)"
|
||||||
|
makedepends="libXfixes-devel libXext-devel libdrm-devel
|
||||||
|
$(vopt_if wayland wayland-devel)"
|
||||||
short_desc="Video Acceleration (VA) API"
|
short_desc="Video Acceleration (VA) API"
|
||||||
maintainer="Orphaned <orphan@voidlinux.org>"
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
||||||
license="MIT"
|
license="MIT"
|
||||||
|
@ -14,12 +16,15 @@ changelog="https://raw.githubusercontent.com/intel/libva/master/NEWS"
|
||||||
distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
|
distfiles="https://github.com/intel/libva/archive/${version}.tar.gz"
|
||||||
checksum=9b6264dade6b6d3edb59c6c4f3c9217d1d5a195635fc07da875d565f58624418
|
checksum=9b6264dade6b6d3edb59c6c4f3c9217d1d5a195635fc07da875d565f58624418
|
||||||
|
|
||||||
|
build_options="wayland"
|
||||||
|
build_options_default="wayland"
|
||||||
|
|
||||||
post_install() {
|
post_install() {
|
||||||
vlicense COPYING
|
vlicense COPYING
|
||||||
}
|
}
|
||||||
|
|
||||||
libva-devel_package() {
|
libva-devel_package() {
|
||||||
depends="wayland-devel ${sourcepkg}>=${version}_${revision}"
|
depends="$(vopt_if wayland wayland-devel) ${sourcepkg}>=${version}_${revision}"
|
||||||
short_desc+=" - development files"
|
short_desc+=" - development files"
|
||||||
pkg_install() {
|
pkg_install() {
|
||||||
vmove usr/include
|
vmove usr/include
|
||||||
|
|
Loading…
Add table
Reference in a new issue