wok view libnotify-gtk3/receipt @ rev 20645

updated hostapd (2.6 -> 2.7)
author Hans-G?nter Theisgen
date Fri Jan 11 16:39:21 2019 +0100 (2019-01-11)
parents 4904e3d374a9
children 6e8b1bcb30e2
line source
1 # SliTaz package receipt.
3 PACKAGE="libnotify-gtk3"
4 VERSION="0.7.6"
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 dbus"
17 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \
18 dbus-dev"
20 # Rules to configure and make the package.
21 compile_rules()
22 {
23 ./configure \
24 --disable-static \
25 --enable-introspection \
26 --disable-gtk-doc \
27 $CONFIGURE_ARGS &&
28 make &&
29 make DESTDIR=$install install
30 }
32 # Rules to gen a SliTaz package suitable for Tazpkg.
33 genpkg_rules()
34 {
35 mkdir -p $fs/usr/lib
36 cp -a $install/usr/bin $fs/usr
37 cp -a $install/usr/lib/*.so* $fs/usr/lib
38 }