wok rev 24816

updated libnotify-gtk3 and libnotify-gtk3-dev (0.7.6 -> 0.7.9)
author Hans-G?nter Theisgen
date Wed Mar 23 07:12:17 2022 +0100 (2022-03-23)
parents 67993c9076ed
children facd18a500ff
files libnotify-gtk3-dev/receipt libnotify-gtk3/description.txt libnotify-gtk3/receipt
line diff
     1.1 --- a/libnotify-gtk3-dev/receipt	Wed Mar 23 06:19:41 2022 +0100
     1.2 +++ b/libnotify-gtk3-dev/receipt	Wed Mar 23 07:12:17 2022 +0100
     1.3 @@ -1,13 +1,12 @@
     1.4  # SliTaz package receipt.
     1.5  
     1.6  PACKAGE="libnotify-gtk3-dev"
     1.7 -VERSION="0.7.6"
     1.8 +VERSION="0.7.9"
     1.9  CATEGORY="utilities"
    1.10 -SHORT_DESC="Development files for libnotify (GTK+3)"
    1.11 +SHORT_DESC="Development files for libnotify (GTK+3)."
    1.12  MAINTAINER="al.bobylev@gmail.com"
    1.13  LICENSE="LGPL2.1"
    1.14 -WEB_SITE="https://web.archive.org/web/20160322142309/https://developer-next.gnome.org/libnotify/"
    1.15 -TAGS="gtk3"
    1.16 +WEB_SITE="https://developer-next.gnome.org/libnotify/"
    1.17  
    1.18  DEPENDS="libnotify-gtk3 pkg-config"
    1.19  WANTED="libnotify-gtk3"
    1.20 @@ -15,9 +14,8 @@
    1.21  # Rules to gen a SliTaz package suitable for Tazpkg.
    1.22  genpkg_rules()
    1.23  {
    1.24 -	mkdir -p $fs/usr/lib
    1.25 -	cp -a $install/usr/include $fs/usr
    1.26 -	cp -a $install/usr/lib/pkgconfig $fs/usr/lib
    1.27 -	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.28 +	# 0.7.9 not created
    1.29 +#	cp -a $install/usr/lib/*.*a $fs/usr/lib
    1.30 +	cook_copy_folders	include
    1.31 +	cook_copy_folders	pkgconfig
    1.32  }
    1.33 -
     2.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     2.2 +++ b/libnotify-gtk3/description.txt	Wed Mar 23 07:12:17 2022 +0100
     2.3 @@ -0,0 +1,11 @@
     2.4 +libnotify implements a standard for a desktop notifications service, through
     2.5 +which applications can generate passive popups to notify the user in an
     2.6 +asynchronous manner of events.
     2.7 +
     2.8 +Example use cases include:
     2.9 +
    2.10 +  * Messages from chat programs
    2.11 +  * Scheduled alarm
    2.12 +  * Completed file transfer
    2.13 +  * New mail notification
    2.14 +  * Low disk space/battery warnings
     3.1 --- a/libnotify-gtk3/receipt	Wed Mar 23 06:19:41 2022 +0100
     3.2 +++ b/libnotify-gtk3/receipt	Wed Mar 23 07:12:17 2022 +0100
     3.3 @@ -1,21 +1,22 @@
     3.4  # SliTaz package receipt.
     3.5  
     3.6  PACKAGE="libnotify-gtk3"
     3.7 -VERSION="0.7.6"
     3.8 +VERSION="0.7.9"
     3.9  CATEGORY="utilities"
    3.10 -SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)"
    3.11 +TAGS="gtk3"
    3.12 +SHORT_DESC="Notification library (GTK+3)."
    3.13  MAINTAINER="al.bobylev@gmail.com"
    3.14  LICENSE="LGPL2.1"
    3.15 +WEB_SITE="https://developer-next.gnome.org/libnotify/"
    3.16 +
    3.17  SOURCE="libnotify"
    3.18  TARBALL="$SOURCE-$VERSION.tar.xz"
    3.19 -WEB_SITE="https://web.archive.org/web/20160322142309/https://developer-next.gnome.org/libnotify/"
    3.20 -SERIES=$(echo $VERSION | cut -d. -f1,2)
    3.21 -WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$TARBALL"
    3.22 -TAGS="gtk3"
    3.23 +WGET_URL="$GNOME_MIRROR/$SOURCE/${VERSION%.*}/$TARBALL"
    3.24  
    3.25 -DEPENDS="gdk-pixbuf dbus"
    3.26 -BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \
    3.27 -dbus-dev"
    3.28 +PROVIDE="libnotify"
    3.29 +DEPENDS="dbus gdk-pixbuf gobject-introspection"
    3.30 +BUILD_DEPENDS="dbus-dev glib-dev gobject-introspection-dev gtk+3-dev
    3.31 +	libxml2-dev meson"
    3.32  
    3.33  current_version()
    3.34  {
    3.35 @@ -26,19 +27,19 @@
    3.36  # Rules to configure and make the package.
    3.37  compile_rules()
    3.38  {
    3.39 -	./configure \
    3.40 -		--disable-static \
    3.41 -		--enable-introspection \
    3.42 -		--disable-gtk-doc \
    3.43 -		$CONFIGURE_ARGS &&
    3.44 -	make &&
    3.45 -	make DESTDIR=$install install
    3.46 +	meson	_build				\
    3.47 +		-D gtk_doc=false		\
    3.48 +		-D docbook_docs=disabled	\
    3.49 +		-D introspection=enabled	\
    3.50 +		-D man=false			\
    3.51 +		--prefix=/usr &&
    3.52 +	ninja	-C _build &&
    3.53 +	ninja	-C _build install
    3.54  }
    3.55  
    3.56  # Rules to gen a SliTaz package suitable for Tazpkg.
    3.57  genpkg_rules()
    3.58  {
    3.59 -	mkdir -p $fs/usr/lib
    3.60 -	cp -a $install/usr/bin $fs/usr
    3.61 -	cp -a $install/usr/lib/*.so* $fs/usr/lib
    3.62 +	cook_copy_folders	bin
    3.63 +	cook_copy_files		*.so*
    3.64  }