wok annotate libnotify/receipt @ rev 4374

pyneighborhood: fix depends and desktop.file
author Paul Issott <paul@slitaz.org>
date Sun Oct 11 13:25:38 2009 +0000 (2009-10-11)
parents 4786cbebbb4b
children 1bbd4d9fe61d
rev   line source
erjo@1987 1 # SliTaz package receipt.
erjo@1987 2
erjo@1987 3 PACKAGE="libnotify"
erjo@1987 4 VERSION="0.4.4"
erjo@1987 5 CATEGORY="utilities"
erjo@1987 6 SHORT_DESC="Notification library"
erjo@1987 7 MAINTAINER="fabrice.thiroux@free.fr"
pascal@2518 8 DEPENDS="dbus gtk+ dbus-glib xorg-libXdamage"
erjo@1987 9 BUILD_DEPENDS="dbus-dev gtk+-dev"
erjo@1987 10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
erjo@1987 11 WEB_SITE="http://www.galago-project.org/"
erjo@1987 12 WGET_URL="http://www.galago-project.org/files/releases/source/libnotify/$TARBALL"
erjo@1987 13
erjo@1987 14 # Rules to configure and make the package.
erjo@1987 15 compile_rules()
erjo@1987 16 {
erjo@1987 17 cd $src
erjo@1987 18 ./configure --prefix=/usr --infodir=/usr/share/info \
pascal@2477 19 --mandir=/usr/share/man --disable-static $CONFIGURE_ARGS &&
pascal@2477 20 make &&
erjo@1987 21 make DESTDIR=$PWD/_pkg install
erjo@1987 22 }
erjo@1987 23
erjo@1987 24 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@1987 25 genpkg_rules()
erjo@1987 26 {
erjo@1987 27 mkdir -p $fs/usr/lib
erjo@1987 28 cp -a $_pkg/usr/bin $fs/usr
erjo@1987 29 cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
erjo@1987 30 }