opt/libnotify/Pkgfile

23 lines
525 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
2020-05-23 12:24:24 +02:00
version=0.7.9
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() {
2020-05-23 12:24:24 +02:00
meson $name-$version build \
2019-08-21 13:23:28 +02:00
--prefix /usr \
-Dtests=false \
-Dintrospection=auto \
2020-05-23 12:24:24 +02:00
-Dman=false \
2019-08-21 13:23:28 +02:00
-Dgtk_doc=false \
-Ddocbook_docs=disabled
2014-12-16 13:58:36 +01:00
2020-05-23 12:24:24 +02:00
ninja -C build -j ${JOBS-1}
DESTDIR=$PKG meson install -C build
}