wok view libwnck/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents c7e731fee6f9
children 6eff489aa802
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck"
4 VERSION="2.30.7"
5 CATEGORY="x-window"
6 SHORT_DESC="libwnck is Window Navigator Construction Kit."
7 MAINTAINER="pankso@slitaz.org"
8 DEPENDS="expat gtk+ startup-notification xorg-libICE xorg-libSM xorg-libX11 \
9 xorg-libXau xorg-libXcomposite xorg-libXcursor xorg-libXdmcp xorg-libXext \
10 xorg-libXfixes xorg-libXinerama xorg-libXrandr xorg-libXrender xorg-libXdamage"
11 BUILD_DEPENDS="perl-xml-parser gettext intltool xorg-dev gtk+-dev pkg-config gobject-introspection-dev"
12 TARBALL="$PACKAGE-$VERSION.tar.bz2"
13 WEB_SITE="http://www.gnome.org/"
14 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 cd $src
20 ./configure \
21 $CONFIGURE_ARGS &&
22 make &&
23 make DESTDIR=$DESTDIR install
24 }
26 # Rules to gen a SliTaz package suitable for Tazpkg.
27 genpkg_rules()
28 {
29 mkdir -p $fs/usr/lib
30 cp -a $_pkg/usr/bin $fs/usr
31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
32 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib
33 }