wok annotate libwnck/receipt @ rev 2455

py3k pycairo pygobject pygtk python-lxml python: update depends
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Mar 14 07:28:53 2009 +0000 (2009-03-14)
parents c1ff74d9b6f4
children 59228667f806
rev   line source
pankso@1275 1 # SliTaz package receipt.
pankso@1275 2
pankso@1275 3 PACKAGE="libwnck"
pankso@1275 4 VERSION="2.22.3"
pankso@1275 5 CATEGORY="x-window"
pankso@1275 6 SHORT_DESC="libwnck is Window Navigator Construction Kit."
pankso@1275 7 MAINTAINER="pankso@slitaz.org"
pascal@1514 8 BUILD_DEPENDS="perl-xml-parser gettext xorg-dev"
pankso@1275 9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
pankso@1275 10 WEB_SITE="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/"
pankso@1275 11 WGET_URL="http://ftp.acc.umu.se/pub/gnome/sources/libwnck/2.22/$TARBALL"
pankso@1275 12
pankso@1275 13 # Rules to configure and make the package.
pankso@1275 14 compile_rules()
pankso@1275 15 {
pankso@1275 16 cd $src
pankso@1275 17 ./configure \
pankso@1275 18 --prefix=/usr \
pankso@1275 19 --infodir=/usr/share/info \
pankso@1275 20 --mandir=/usr/share/man \
pascal@1465 21 $CONFIGURE_ARGS &&
pascal@1465 22 make &&
pankso@1275 23 make DESTDIR=$PWD/_pkg install
pankso@1275 24 }
pankso@1275 25
pankso@1275 26 # Rules to gen a SliTaz package suitable for Tazpkg.
pankso@1275 27 genpkg_rules()
pankso@1275 28 {
pankso@1275 29 mkdir -p $fs/usr/lib
pankso@1275 30 cp -a $_pkg/usr/bin $fs/usr
pankso@1275 31 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
pankso@1275 32 }