wok-current diff libwpe/receipt @ rev 25724

Up audacity to 3.0.2, fix openssh/wxWidgets build
author Stanislas Leduc <shann@slitaz.org>
date Tue Jun 25 14:51:14 2024 +0000 (6 days ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libwpe/receipt	Tue Jun 25 14:51:14 2024 +0000
     1.3 @@ -0,0 +1,35 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libwpe"
     1.7 +VERSION="1.12.0"
     1.8 +CATEGORY="libs"
     1.9 +SHORT_DESC="General-purpose library for WPE WebKit"
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="other"
    1.12 +WEB_SITE="https://wpewebkit.org"
    1.13 +
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.15 +WGET_URL="$WEB_SITE/releases/$TARBALL"
    1.16 +
    1.17 +DEPENDS="libxkbcommon mesa"
    1.18 +BUILD_DEPENDS="libxkbcommon-dev mesa-dev meson"
    1.19 +
    1.20 +# Rules to configure and make the package.
    1.21 +compile_rules()
    1.22 +{
    1.23 +        meson build \
    1.24 +            --prefix=/usr \
    1.25 +            --libdir=lib \
    1.26 +            --bindir=/usr/bin \
    1.27 +            --sbindir=/usr/sbin \
    1.28 +            --buildtype=release &&
    1.29 +        ninja -C build &&
    1.30 +        ninja -C build install
    1.31 +}
    1.32 +
    1.33 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.34 +genpkg_rules()       
    1.35 +{                          
    1.36 +        mkdir -p $fs/usr/lib
    1.37 +        cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.38 +}