# HG changeset patch # User Hans-G?nter Theisgen # Date 1648015937 -3600 # Node ID 21a4d655af02664ce5ef119fe814da9104872bac # Parent 67993c9076ed44e0f061679b6da551e2f0c73d2c updated libnotify-gtk3 and libnotify-gtk3-dev (0.7.6 -> 0.7.9) diff -r 67993c9076ed -r 21a4d655af02 libnotify-gtk3-dev/receipt --- a/libnotify-gtk3-dev/receipt Wed Mar 23 06:19:41 2022 +0100 +++ b/libnotify-gtk3-dev/receipt Wed Mar 23 07:12:17 2022 +0100 @@ -1,13 +1,12 @@ # SliTaz package receipt. PACKAGE="libnotify-gtk3-dev" -VERSION="0.7.6" +VERSION="0.7.9" CATEGORY="utilities" -SHORT_DESC="Development files for libnotify (GTK+3)" +SHORT_DESC="Development files for libnotify (GTK+3)." MAINTAINER="al.bobylev@gmail.com" LICENSE="LGPL2.1" -WEB_SITE="https://web.archive.org/web/20160322142309/https://developer-next.gnome.org/libnotify/" -TAGS="gtk3" +WEB_SITE="https://developer-next.gnome.org/libnotify/" DEPENDS="libnotify-gtk3 pkg-config" WANTED="libnotify-gtk3" @@ -15,9 +14,8 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/include $fs/usr - cp -a $install/usr/lib/pkgconfig $fs/usr/lib - cp -a $install/usr/lib/*.*a $fs/usr/lib + # 0.7.9 not created +# cp -a $install/usr/lib/*.*a $fs/usr/lib + cook_copy_folders include + cook_copy_folders pkgconfig } - diff -r 67993c9076ed -r 21a4d655af02 libnotify-gtk3/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/libnotify-gtk3/description.txt Wed Mar 23 07:12:17 2022 +0100 @@ -0,0 +1,11 @@ +libnotify implements a standard for a desktop notifications service, through +which applications can generate passive popups to notify the user in an +asynchronous manner of events. + +Example use cases include: + + * Messages from chat programs + * Scheduled alarm + * Completed file transfer + * New mail notification + * Low disk space/battery warnings diff -r 67993c9076ed -r 21a4d655af02 libnotify-gtk3/receipt --- a/libnotify-gtk3/receipt Wed Mar 23 06:19:41 2022 +0100 +++ b/libnotify-gtk3/receipt Wed Mar 23 07:12:17 2022 +0100 @@ -1,21 +1,22 @@ # SliTaz package receipt. PACKAGE="libnotify-gtk3" -VERSION="0.7.6" +VERSION="0.7.9" CATEGORY="utilities" -SHORT_DESC="Sends desktop notifications to a notification daemon (GTK+3)" +TAGS="gtk3" +SHORT_DESC="Notification library (GTK+3)." MAINTAINER="al.bobylev@gmail.com" LICENSE="LGPL2.1" +WEB_SITE="https://developer-next.gnome.org/libnotify/" + SOURCE="libnotify" TARBALL="$SOURCE-$VERSION.tar.xz" -WEB_SITE="https://web.archive.org/web/20160322142309/https://developer-next.gnome.org/libnotify/" -SERIES=$(echo $VERSION | cut -d. -f1,2) -WGET_URL="$GNOME_MIRROR/$SOURCE/$SERIES/$TARBALL" -TAGS="gtk3" +WGET_URL="$GNOME_MIRROR/$SOURCE/${VERSION%.*}/$TARBALL" -DEPENDS="gdk-pixbuf dbus" -BUILD_DEPENDS="gtk+3-dev gobject-introspection-dev glib-dev libxml2-dev \ -dbus-dev" +PROVIDE="libnotify" +DEPENDS="dbus gdk-pixbuf gobject-introspection" +BUILD_DEPENDS="dbus-dev glib-dev gobject-introspection-dev gtk+3-dev + libxml2-dev meson" current_version() { @@ -26,19 +27,19 @@ # Rules to configure and make the package. compile_rules() { - ./configure \ - --disable-static \ - --enable-introspection \ - --disable-gtk-doc \ - $CONFIGURE_ARGS && - make && - make DESTDIR=$install install + meson _build \ + -D gtk_doc=false \ + -D docbook_docs=disabled \ + -D introspection=enabled \ + -D man=false \ + --prefix=/usr && + ninja -C _build && + ninja -C _build install } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib - cp -a $install/usr/bin $fs/usr - cp -a $install/usr/lib/*.so* $fs/usr/lib + cook_copy_folders bin + cook_copy_files *.so* }