wok-current view libva/receipt @ rev 25727
Add miss stuff folder for libxml++, dbus-c++
author | Stanislas Leduc <shann@slitaz.org> |
---|---|
date | Tue Nov 05 13:46:37 2024 +0000 (2 months ago) |
parents | |
children | 5926178cd6fa |
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 # Rules to configure and make the package.
17 compile_rules()
18 {
19 mkdir mbuild && cd mbuild
20 meson setup \
21 --prefix=/usr \
22 --libdir=lib \
23 --bindir=/usr/bin \
24 --sbindir=/usr/sbin \
25 --buildtype=release \
26 ..
28 ninja build
29 DESTDIR=$install ninja install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }