wok view notification-daemon/receipt @ rev 13429

partclone: add btrfs & hfsplus support
author Pascal Bellard <pascal.bellard@slitaz.org>
date Thu Oct 04 11:53:21 2012 +0200 (2012-10-04)
parents 21d0e756562a
children 5b84cc8c4002
line source
1 # SliTaz package receipt.
3 PACKAGE="notification-daemon"
4 VERSION="0.5.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Notification daemon for libnotify/notify-send"
7 MAINTAINER="pankso@slitaz.org"
8 TARBALL="$PACKAGE-$VERSION.tar.bz2"
9 WEB_SITE="http://www.galago-project.org/"
10 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
12 DEPENDS="dbus libnotify libcanberra libwnck GConf libogg libvorbis libltdl"
13 BUILD_DEPENDS="dbus-dev libnotify-dev libcanberra-dev GConf-dev \
14 libwnck-dev libogg-dev libvorbis-dev intltool"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --sysconfdir=/etc \
21 --libexecdir=/usr/bin \
22 $CONFIGURE_ARGS &&
23 make && make install &&
24 rm -rf $install/usr/share/applications
25 }
27 # Rules to gen a SliTaz package suitable for Tazpkg.
28 genpkg_rules()
29 {
30 mkdir -p $fs/usr/bin $fs/usr/share
31 #$fs/usr/share/pixmaps $fs/usr/share/applications
32 #cp -a $install/etc $fs
33 cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
34 cp -a $install/usr/lib $fs/usr
35 rm $fs/usr/lib/*/*/*.*a
36 cp -a $install/usr/share/dbus-1 $fs/usr/share
37 #cp -a $install/usr/share/$PACKAGE $fs/usr/share
38 #cp $install/usr/share/icons/hicolor/32x32/apps/* \
39 # $fs/usr/share/pixmaps
40 }