wok view libwnck/receipt @ rev 8808

Add: libdrm-mach64 20110109
author Antoine Bodin <gokhlayeh@slitaz.org>
date Wed Feb 23 01:16:27 2011 +0100 (2011-02-23)
parents 5d23f675487c
children 91e33f964d22
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="http://ftp.acc.umu.se/pub/gnome/sources/$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/share/girepository-1.0 $fs/usr/share
36 }