wok-next annotate libnotify-gtk3/receipt @ rev 20239

linux-cloop: tiny patch (again)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Nov 06 18:03:36 2017 +0100 (2017-11-06)
parents 5e1076889439
children 4396aed7eb01
rev   line source
al@14237 1 # SliTaz package receipt.
al@14237 2
al@14237 3 PACKAGE="libnotify-gtk3"
devl547@17638 4 VERSION="0.7.6"
al@14237 5 CATEGORY="utilities"
al@14237 6 SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
al@14237 7 MAINTAINER="al.bobylev@gmail.com"
pascal@14714 8 LICENSE="LGPL2.1"
al@14237 9 WEB_SITE="http://developer-next.gnome.org/libnotify/"
al@14237 10 TAGS="gtk3"
al@14237 11
al@19691 12 TARBALL="libnotify-$VERSION.tar.xz"
al@19691 13 WGET_URL="$GNOME_MIRROR/libnotify/$(echo $VERSION | cut -d. -f1,2)/$TARBALL"
al@19691 14
devl547@17638 15 DEPENDS="gdk-pixbuf dbus"
devl547@17638 16 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \
devl547@17638 17 dbus-dev"
al@14237 18
al@14237 19 # Rules to configure and make the package.
al@14237 20 compile_rules()
al@14237 21 {
al@14237 22 ./configure \
al@14237 23 --disable-static \
al@14237 24 --enable-introspection \
al@14237 25 --disable-gtk-doc \
al@14237 26 $CONFIGURE_ARGS &&
al@14237 27 make &&
al@14237 28 make DESTDIR=$install install
al@14237 29 }
al@14237 30
al@14237 31 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14237 32 genpkg_rules()
al@14237 33 {
al@14237 34 mkdir -p $fs/usr/lib
al@14237 35 cp -a $install/usr/bin $fs/usr
al@14237 36 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@14237 37 }