wok-current view libva/receipt @ rev 25760

Up libxslt 1.1.43 (CVE-2024-55549, CVE-2025-24855), expat 2.7.0 (CVE-2024-8176) and freetype 1.13.3 (CVE-2025-27363)
author Stanislas Leduc <shann@slitaz.org>
date Mon Mar 17 14:32:04 2025 +0000 (12 days ago)
parents 4fd464abe902
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libva"
4 VERSION="2.13.0"
5 CATEGORY="x-window"
6 SHORT_DESC="VA (Video Acceleration API) library"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="MIT"
9 WEB_SITE="https://github.com/intel/libva"
10 TARBALL="$PACKAGE-$VERSION.tar.gz"
11 WGET_URL="https://github.com/intel/libva/archive/refs/tags/$VERSION.tar.gz"
13 BUILD_DEPENDS="xorg-libX11-dev xorg-libXext-dev \
14 xorg-dev-proto libdrm-dev meson"
16 HOST_ARCH="i486 x86_64"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 mkdir mbuild && cd mbuild
22 meson setup \
23 --prefix=/usr \
24 --libdir=lib \
25 --bindir=/usr/bin \
26 --sbindir=/usr/sbin \
27 --buildtype=release \
28 ..
30 ninja build
31 DESTDIR=$install ninja install
32 }
34 # Rules to gen a SliTaz package suitable for Tazpkg.
35 genpkg_rules()
36 {
37 mkdir -p $fs/usr/lib
38 cp -a $install/usr/lib/*.so* $fs/usr/lib
39 }