wok view libnotify-gtk3/receipt @ rev 16281

ARM: add beaver
author Christophe Lincoln <pankso@slitaz.org>
date Sun Apr 06 16:03:46 2014 +0200 (2014-04-06)
parents 68d68791ced5
children 5e1076889439
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 LICENSE="LGPL2.1"
9 SOURCE="libnotify"
10 TARBALL="$SOURCE-$VERSION.tar.xz"
11 WEB_SITE="http://developer-next.gnome.org/libnotify/"
12 SERIES=$(echo $VERSION | cut -d. -f1,2)
13 WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$TARBALL"
14 TAGS="gtk3"
16 DEPENDS="gdk-pixbuf"
17 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev"
19 # Rules to configure and make the package.
20 compile_rules()
21 {
22 ./configure \
23 --disable-static \
24 --enable-introspection \
25 --disable-gtk-doc \
26 $CONFIGURE_ARGS &&
27 make &&
28 make DESTDIR=$install install
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir -p $fs/usr/lib
35 cp -a $install/usr/bin $fs/usr
36 cp -a $install/usr/lib/*.so* $fs/usr/lib
37 }