wok-current diff libdazzle/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 (6 months ago)
parents
children
line diff
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/libdazzle/receipt	Fri Apr 19 12:48:51 2024 +0000
     1.3 @@ -0,0 +1,36 @@
     1.4 +# SliTaz package receipt.
     1.5 +
     1.6 +PACKAGE="libdazzle"
     1.7 +VERSION="3.44.0"
     1.8 +CATEGORY="libs"
     1.9 +SHORT_DESC="Companion library to GObject and Gtk+"
    1.10 +MAINTAINER="maintainer@slitaz.org"
    1.11 +LICENSE="GPL3"
    1.12 +WEB_SITE="https://gitlab.gnome.org/GNOME/libdazzle"
    1.13 +
    1.14 +TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.15 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.16 +
    1.17 +BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev \
    1.18 +vala 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 +
    1.30 +        ninja -C _build build
    1.31 +        DESTDIR=$install ninja -C _build install
    1.32 +}
    1.33 +
    1.34 +# Rules to gen a SliTaz package suitable for Tazpkg.
    1.35 +genpkg_rules()       
    1.36 +{                          
    1.37 +        mkdir -p $fs/usr/lib
    1.38 +        cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.39 +}