blob: e37792cb1d7228f3a45d84df474f1393271b3b2c (
plain)
1 # Description: Desktop notification library
2 # URL: https://developer.gnome.org/libnotify/
3 # Maintainer: Danny Rawlins, crux at romster dot me
4 # Depends on: gtk3
5
6 name=libnotify
7 version=0.8.1
8 release=1
9 source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
10
11 build() {
12 meson $name-$version build \
13 --prefix /usr \
14 --wrap-mode nodownload \
15 -D b_pie=true \
16 -Dtests=false \
17 -Dintrospection=auto \
18 -Dman=false \
19 -Dgtk_doc=false \
20 -Ddocbook_docs=disabled
21
22 ninja -C build -j ${JOBS-1}
23 DESTDIR=$PKG meson install -C build
24 }
|