opt/libnotify/Pkgfile

25 lines
589 B
Plaintext
Raw Normal View History

2014-12-16 13:58:36 +01:00
# Description: Desktop notification library
2015-03-16 16:07:49 +01:00
# URL: https://developer.gnome.org/libnotify/
2019-08-21 13:23:28 +02:00
# Maintainer: Danny Rawlins, crux at romster dot me
# Depends on: gtk3
name=libnotify
2023-02-18 14:08:35 +01:00
version=0.8.2
2019-08-21 13:23:28 +02:00
release=1
source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
2023-02-18 14:08:35 +01:00
meson setup build $name-$version \
2019-08-21 13:23:28 +02:00
--prefix /usr \
2022-05-31 22:25:46 +02:00
--wrap-mode nodownload \
-D b_pie=true \
2023-02-18 14:08:35 +01:00
-D tests=false \
-D introspection=auto \
-D man=false \
-D gtk_doc=false \
-D docbook_docs=disabled
2014-12-16 13:58:36 +01:00
2023-02-18 14:08:35 +01:00
meson compile -C build -j ${JOBS-1}
2020-05-23 12:24:24 +02:00
DESTDIR=$PKG meson install -C build
}