wok view libwnck/receipt @ rev 6324

Up: dosfstools to 3.0.10.
author Christopher Rogers <slaxemulator@gmail.com>
date Fri Sep 17 17:06:33 2010 +0000 (2010-09-17)
parents 2e55de4816a6
children 158d2d1d56c4
line source
1 # SliTaz package receipt.
3 PACKAGE="libwnck"
4 VERSION="2.30.2"
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 xorg-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/libwnck/2.30/$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 }