opt/libnotify/Pkgfile

23 lines
499 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
2019-08-21 13:23:28 +02:00
version=0.7.8
release=1
source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
build() {
2019-08-21 13:23:28 +02:00
cd $name-$version
2014-12-16 13:58:36 +01:00
2019-08-21 13:23:28 +02:00
meson build \
--prefix /usr \
-Dtests=false \
-Dintrospection=auto \
-Dgtk_doc=false \
-Ddocbook_docs=disabled
2014-12-16 13:58:36 +01:00
2019-08-21 13:23:28 +02:00
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
}