wok view libwnck3/receipt @ rev 22172

exo, libgksu, libwnck3: link with libxcb-util
author Pascal Bellard <pascal.bellard@slitaz.org>
date Fri Nov 08 12:19:12 2019 +0100 (2019-11-08)
parents 86790a278e70
children 6831608a1b2a
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck3"
4 VERSION="3.14.1"
5 CATEGORY="x-window"
6 SHORT_DESC="Window Navigator Construction Kit (GTK+3)"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="LGPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.xz"
10 WEB_SITE="https://www.gnome.org/"
11 WGET_URL="$GNOME_MIRROR/libwnck/${VERSION%.*}/libwnck-$VERSION.tar.xz"
13 DEPENDS="expat gtk+ startup-notification xorg-libICE xorg-libSM xorg-libX11 \
14 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
15 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
16 BUILD_DEPENDS="startup-notification-dev gtk+3-dev gobject-introspection-dev \
17 xcb-util-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 export LDFLAGS="$LDFLAGS -lxcb-util"
23 ./configure \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$install install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
33 cp -a $install/usr/bin $fs/usr
34 cp -a $install/usr/lib/*.so* $fs/usr/lib
35 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
36 }