wok view libwnck/receipt @ rev 9508

Fixed libwnck again.
author Christopher Rogers <slaxemulator@gmail.com>
date Wed Apr 06 07:40:02 2011 +0000 (2011-04-06)
parents 91e33f964d22
children b1f2da41812a
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck"
4 VERSION="2.30.6"
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://ftp.acc.umu.se/pub/gnome/sources/libwnck/"
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 --prefix=/usr \
22 --infodir=/usr/share/info \
23 --mandir=/usr/share/man \
24 $CONFIGURE_ARGS &&
25 make &&
26 make DESTDIR=$PWD/_pkg 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 $_pkg/usr/bin $fs/usr
34 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
35 cp -a $_pkg/usr/lib/girepository-1.0 $fs/usr/lib
36 }