The libnotify library is used to send desktop notifications to a notification daemon, as defined in the Desktop Notifications spec. These notifications can be used to inform the user about an event or display some form of information without getting in the user's way.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
Download (HTTP): https://download.gnome.org/sources/libnotify/0.8/libnotify-0.8.3.tar.xz
Download MD5 sum: 952e55f45067b6a5b9eab4310c9cd658
Download size: 104 KB
Estimated disk space required: 2.3 MB
Estimated build time: 0.1 SBU
GLib-2.82.2 (with GObject Introspection)
Gi-DocGen-2024.1 and xmlto-0.0.29
notification-daemon-3.20.0, xfce4-notifyd-0.9.6, or lxqt-notificationd-2.0.1
GNOME Shell and KDE KWin provide their own notification daemons.
Install libnotify by running the following commands:
mkdir build && cd build && meson setup --prefix=/usr \ --buildtype=release \ -D gtk_doc=false \ -D man=false \ .. && ninja
This package does not come with a test suite.
If you have Gi-DocGen-2024.1 installed and wish to build the API documentation for this package, issue:
sed "/docs_dir =/s@\$@ / 'libnotify'@" \ -i ../docs/reference/meson.build && meson configure -D gtk_doc=true && ninja
Now, as the root
user:
ninja install && if [ -e /usr/share/doc/libnotify ]; then rm -rf /usr/share/doc/libnotify-0.8.3 mv -v /usr/share/doc/libnotify{,-0.8.3} fi
--buildtype=release
:
Specify a buildtype suitable for stable releases of the package, as
the default may produce unoptimized binaries.