wok-next view libnotify-gtk3/receipt @ rev 20595

More fix libtool.
author Aleksej Bobylev <al.bobylev@gmail.com>
date Mon Apr 16 11:36:31 2018 +0300 (2018-04-16)
parents 4396aed7eb01
children
line source
1 # SliTaz package receipt v2.
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 WEB_SITE="http://developer-next.gnome.org/libnotify/"
11 TARBALL="libnotify-$VERSION.tar.xz"
12 WGET_URL="$GNOME_MIRROR/libnotify/$(echo $VERSION | cut -d. -f1,2)/$TARBALL"
14 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \
15 dbus-dev"
16 SPLIT="libnotify-gtk3-dev"
18 compile_rules() {
19 ./configure \
20 --disable-static \
21 --enable-introspection \
22 --disable-gtk-doc \
23 $CONFIGURE_ARGS &&
24 fix libtool &&
25 make &&
26 make DESTDIR=$install install
27 }
29 genpkg_rules() {
30 case $PACKAGE in
31 libnotify-gtk3)
32 copy @std
33 DEPENDS="gdk-pixbuf dbus"
34 TAGS="gtk3"
35 ;;
36 *-dev)
37 copy @dev
38 ;;
39 esac
40 }