wok view libnotify-gtk3/receipt @ rev 14657

Normalize LICENSE according to wok/licenses package (bsd part)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Wed Jun 05 16:21:04 2013 +0200 (2013-06-05)
parents 50f5543dd76b
children 4904e3d374a9
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 TARBALL="$SOURCE-$VERSION.tar.xz"
10 WEB_SITE="http://developer-next.gnome.org/libnotify/"
11 SERIES=$(echo $VERSION | cut -d. -f1,2)
12 WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$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 }