wok-current view libwpe/receipt @ rev 25701

Fix dep for libglamoregl.so (libepoxy), and miss file for amdgpu (thanks alanyih)
author Stanislas Leduc <shann@slitaz.org>
date Fri Apr 19 12:48:51 2024 +0000 (2 months ago)
parents
children
line source
1 # SliTaz package receipt.
3 PACKAGE="libwpe"
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 mesa"
15 BUILD_DEPENDS="libxkbcommon-dev mesa-dev meson"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 meson build \
21 --prefix=/usr \
22 --libdir=lib \
23 --bindir=/usr/bin \
24 --sbindir=/usr/sbin \
25 --buildtype=release &&
26 ninja -C build &&
27 ninja -C build install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 }