wok view notification-daemon/receipt @ rev 15000

Add some GPL2 licenses
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Aug 10 17:00:38 2013 +0000 (2013-08-10)
parents 5b84cc8c4002
children 8db481e72104
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 LICENSE="GPL2"
9 TARBALL="$PACKAGE-$VERSION.tar.bz2"
10 WEB_SITE="http://www.galago-project.org/"
11 WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
13 DEPENDS="dbus libnotify libcanberra libwnck GConf libogg libvorbis libltdl"
14 BUILD_DEPENDS="dbus-dev libnotify-dev libcanberra-dev GConf-dev \
15 libwnck-dev libogg-dev libvorbis-dev intltool libtool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 ./configure \
21 --sysconfdir=/etc \
22 --libexecdir=/usr/bin \
23 $CONFIGURE_ARGS &&
24 make && make install &&
25 rm -rf $install/usr/share/applications
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir -p $fs/usr/bin $fs/usr/share
32 #$fs/usr/share/pixmaps $fs/usr/share/applications
33 #cp -a $install/etc $fs
34 cp -a $install/usr/bin/$PACKAGE $fs/usr/bin
35 cp -a $install/usr/lib $fs/usr
36 rm $fs/usr/lib/*/*/*.*a
37 cp -a $install/usr/share/dbus-1 $fs/usr/share
38 #cp -a $install/usr/share/$PACKAGE $fs/usr/share
39 #cp $install/usr/share/icons/hicolor/32x32/apps/* \
40 # $fs/usr/share/pixmaps
41 }