wok-next view mate-notification-daemon/receipt @ rev 19925

libftdi: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sat Oct 14 23:27:36 2017 +0200 (2017-10-14)
parents 13806712bef0
children
line source
1 # SliTaz package receipt v2.
3 PACKAGE="mate-notification-daemon"
4 VERSION="1.14.0"
5 CATEGORY="x-window"
6 SHORT_DESC="Fork of gnome-notification-daemon"
7 MAINTAINER="al.bobylev@gmail.com"
8 LICENSE="GPL2"
9 WEB_SITE="https://github.com/mate-desktop/mate-notification-daemon/"
11 TARBALL="$PACKAGE-$VERSION.tar.gz"
12 WGET_URL="${WEB_SITE}archive/v$VERSION.tar.gz"
14 BUILD_DEPENDS="autoconf automake libtool gtk+-dev dbus-dev dbus-glib-dev \
15 libcanberra-dev libwnck2-dev libnotify-dev intltool"
17 # Rules to configure and make the package.
18 compile_rules()
19 {
20 sed -i '/^MATE_/d' configure.ac # build standalone without MATE
21 sed -i '/^OnlyShowIn/d' src/capplet/mate-notification-properties.desktop.in
23 mkdir macros; autoreconf -fi
24 intltoolize; autoreconf
25 ./configure \
26 --sysconfdir=/etc \
27 $CONFIGURE_ARGS &&
28 make && make install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 copy @std
35 rm -r $fs/usr/share/icons/; cook_copy_icons # only 16 and 48
36 DEPENDS="atk bzlib cairo dbus dbus-glib fontconfig freetype gdk-pixbuf \
37 glib gtk+ libcanberra libffi libharfbuzz libltdl liblzma libnotify libogg \
38 libpng16 libvorbis libwnck2 libxml2 pango pcre startup-notification \
39 util-linux-blkid util-linux-mount util-linux-uuid xorg-libX11 xorg-libXau \
40 xorg-libXdmcp xorg-libXext xorg-libXrender xorg-libxcb xorg-pixman \
41 xorg-xcb-util zlib"
42 PROVIDE="notification-daemon"
43 TAGS="MATE"
44 }