wok annotate libnotify-gtk3/receipt @ rev 23739

updated x264 (20191105-2245 -> 20191217-2245)
author Hans-G?nter Theisgen
date Fri May 01 10:57:39 2020 +0100 (2020-05-01)
parents 5e1076889439
children c6796c6304f6
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 SOURCE="libnotify"
al@14237 10 TARBALL="$SOURCE-$VERSION.tar.xz"
pascal@20671 11 WEB_SITE="https://developer-next.gnome.org/libnotify/"
al@14269 12 SERIES=$(echo $VERSION | cut -d. -f1,2)
al@14269 13 WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$TARBALL"
al@14237 14 TAGS="gtk3"
al@14237 15
devl547@17638 16 DEPENDS="gdk-pixbuf dbus"
devl547@17638 17 BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \
devl547@17638 18 dbus-dev"
al@14237 19
al@14237 20 # Rules to configure and make the package.
al@14237 21 compile_rules()
al@14237 22 {
al@14237 23 ./configure \
al@14237 24 --disable-static \
al@14237 25 --enable-introspection \
al@14237 26 --disable-gtk-doc \
al@14237 27 $CONFIGURE_ARGS &&
al@14237 28 make &&
al@14237 29 make DESTDIR=$install install
al@14237 30 }
al@14237 31
al@14237 32 # Rules to gen a SliTaz package suitable for Tazpkg.
al@14237 33 genpkg_rules()
al@14237 34 {
al@14237 35 mkdir -p $fs/usr/lib
al@14237 36 cp -a $install/usr/bin $fs/usr
al@14237 37 cp -a $install/usr/lib/*.so* $fs/usr/lib
al@14237 38 }