wok-current view libnotify/receipt @ rev 1987
Add: libnotify, libnotify-dev, xchat thanks Fabrice.
| author | Eric Joseph-Alexandre <erjo@slitaz.org> | 
|---|---|
| date | Mon Jan 05 23:57:02 2009 +0100 (2009-01-05) | 
| parents | |
| children | 4786cbebbb4b | 
 line source
     1 # SliTaz package receipt.
     3 PACKAGE="libnotify"
     4 VERSION="0.4.4"
     5 CATEGORY="utilities"
     6 SHORT_DESC="Notification library"
     7 MAINTAINER="fabrice.thiroux@free.fr"
     8 DEPENDS="dbus gtk+"
     9 BUILD_DEPENDS="dbus-dev gtk+-dev"
    10 TARBALL="$PACKAGE-$VERSION.tar.bz2"
    11 WEB_SITE="http://www.galago-project.org/"
    12 WGET_URL="http://www.galago-project.org/files/releases/source/libnotify/$TARBALL"
    14 # Rules to configure and make the package.
    15 compile_rules()
    16 {
    17     cd $src
    18     ./configure --prefix=/usr --infodir=/usr/share/info \
    19     --mandir=/usr/share/man --disable-static $CONFIGURE_ARGS
    20     make
    21     make DESTDIR=$PWD/_pkg install
    22 }
    24 # Rules to gen a SliTaz package suitable for Tazpkg.
    25 genpkg_rules()
    26 {
    27     mkdir -p $fs/usr/lib
    28     cp -a $_pkg/usr/bin $fs/usr
    29     cp -a $_pkg/usr/lib/*.so* $fs/usr/lib
    30 }