wok-next view libwnck2/receipt @ rev 21722

efivar: typo in post_install
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Sep 01 10:31:46 2020 +0000 (2020-09-01)
parents 5669e8b3be70
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="libwnck2"
4 VERSION="2.31.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Window Navigator Construction Kit"
7 MAINTAINER="devel@slitaz.org"
8 LICENSE="LGPL2"
9 WEB_SITE="https://developer.gnome.org/libwnck/"
11 TARBALL="libwnck-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/libwnck/${VERSION%.*}/$TARBALL"
14 BUILD_DEPENDS="intltool startup-notification-dev libx11-dev gtk2-dev \
15 gobject-introspection-dev xcb-util-dev"
16 SPLIT="$PACKAGE-dev"
18 compile_rules() {
19 ./configure $CONFIGURE_ARGS &&
20 fix libtool &&
21 make &&
22 make install
23 }
25 genpkg_rules() {
26 case $PACKAGE in
27 libwnck2)
28 copy @std
29 PROVIDE="libwnck"
30 DEPENDS="atk libcairo gdk-pixbuf glib gtk2 pango startup-notification \
31 libx11"
32 ;;
33 *-dev)
34 copy @dev
35 PROVIDE="libwnck-dev"
36 DEPENDS="libwnck2 cairo-dev glib-dev gtk2-dev pango-dev \
37 startup-notification-dev libx11-dev"
38 ;;
39 esac
40 }