wok annotate libnotify/receipt @ rev 6521

Up: usbutils to 0.9.0.
author Christopher Rogers <slaxemulator@gmail.com>
date Sat Oct 02 17:17:45 2010 +0000 (2010-10-02)
parents 2e55de4816a6
children 2424f798cd58
rev   line source
erjo@1987 1 # SliTaz package receipt.
erjo@1987 2
erjo@1987 3 PACKAGE="libnotify"
slaxemulator@6216 4 VERSION="0.4.5"
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"
slaxemulator@6216 9 BUILD_DEPENDS="dbus-dev gtk+-dev dbus-glib dbus-glib-dev perl expat-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 }