wok view libnotify-gtk3/receipt @ rev 14252

readline: update deps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Mar 25 15:43:45 2013 +0100 (2013-03-25)
parents
children 68d68791ced5
line source
1 # SliTaz package receipt.
3 PACKAGE="libnotify-gtk3"
4 VERSION="0.7.5"
5 CATEGORY="utilities"
6 SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
7 MAINTAINER="al.bobylev@gmail.com"
8 SOURCE="libnotify"
9 HI_VERSION=$(echo $VERSION | cut -d. -f1,2)
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="http://developer-next.gnome.org/libnotify/"
12 WGET_URL="$GNOME_MIRROR/$SOURCE/$HI_VERSION/$TARBALL"
13 TAGS="gtk3"
15 DEPENDS="gdk-pixbuf"
16 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev"
18 # Rules to configure and make the package.
19 compile_rules()
20 {
21 ./configure \
22 --disable-static \
23 --enable-introspection \
24 --disable-gtk-doc \
25 $CONFIGURE_ARGS &&
26 make &&
27 make DESTDIR=$install install
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir -p $fs/usr/lib
34 cp -a $install/usr/bin $fs/usr
35 cp -a $install/usr/lib/*.so* $fs/usr/lib
36 }