wok-current view wpebackend-fdo/receipt @ rev 25694

Fix cifs-utils, up grub2-efi-x64 stuff for iso EFI
author Stanislas Leduc <shann@slitaz.org>
date Sat Mar 30 18:05:22 2024 +0000 (2 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="wpebackend-fdo"
4 VERSION="1.12.0"
5 CATEGORY="libs"
6 SHORT_DESC="General-purpose library for WPE WebKit"
7 MAINTAINER="maintainer@slitaz.org"
8 LICENSE="other"
9 WEB_SITE="https://wpewebkit.org"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$WEB_SITE/releases/$TARBALL"
14 DEPENDS="libxkbcommon libwpe wayland mesa libepoxy"
15 BUILD_DEPENDS="libxkbcommon-dev libwpe-dev \
16 libepoxy-dev wayland-dev mesa-dev meson"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 meson build \
22 --prefix=/usr \
23 --libdir=lib \
24 --bindir=/usr/bin \
25 --sbindir=/usr/sbin \
26 --buildtype=release \
27 -Dstrip=true &&
28 ninja -C build &&
29 ninja -C build 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 }