wok view libwnck/receipt @ rev 23503

updated python-llfuse (0.38 -> 1.3.6)
author Hans-G?nter Theisgen
date Mon Apr 06 08:57:07 2020 +0100 (2020-04-06)
parents 86790a278e70
children 5d79829fa876
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck"
4 VERSION="2.31.0"
5 CATEGORY="x-window"
6 SHORT_DESC="A Window Navigator Construction Kit."
7 MAINTAINER="pankso@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://developer.gnome.org/libwnck/"
11 TARBALL="$PACKAGE-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
14 DEPENDS="expat gtk+ startup-notification xorg-libICE xorg-libSM xorg-libX11 \
15 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
16 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
17 BUILD_DEPENDS="gettext gobject-introspection-dev gtk+-dev intltool \
18 perl-xml-parser pkg-config xorg-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 $CONFIGURE_ARGS &&
25 make -j 1 &&
26 make DESTDIR=$DESTDIR install
27 }
29 # Rules to gen a SliTaz package suitable for Tazpkg.
30 genpkg_rules()
31 {
32 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 cp -a $install/usr/lib/girepository-1.0 $fs/usr/lib
37 }