2014-12-16 12:58:36 +00:00
|
|
|
# Description: Desktop notification library
|
2015-03-16 16:07:49 +01:00
|
|
|
# URL: https://developer.gnome.org/libnotify/
|
2019-08-21 21:23:28 +10:00
|
|
|
# Maintainer: Danny Rawlins, crux at romster dot me
|
|
|
|
# Depends on: gtk3
|
2010-07-08 12:43:35 +02:00
|
|
|
|
|
|
|
name=libnotify
|
2019-08-21 21:23:28 +10:00
|
|
|
version=0.7.8
|
|
|
|
release=1
|
|
|
|
source=(https://ftp.gnome.org/pub/GNOME/sources/$name/${version%.*}/$name-$version.tar.xz)
|
2010-07-08 12:43:35 +02:00
|
|
|
|
|
|
|
build() {
|
2019-08-21 21:23:28 +10:00
|
|
|
cd $name-$version
|
2014-12-16 12:58:36 +00:00
|
|
|
|
2019-08-21 21:23:28 +10:00
|
|
|
meson build \
|
|
|
|
--prefix /usr \
|
|
|
|
-Dtests=false \
|
|
|
|
-Dintrospection=auto \
|
|
|
|
-Dgtk_doc=false \
|
|
|
|
-Ddocbook_docs=disabled
|
2014-12-16 12:58:36 +00:00
|
|
|
|
2019-08-21 21:23:28 +10:00
|
|
|
DESTDIR=$PKG ninja -C build -j ${JOBS:-1} install
|
2010-07-08 12:43:35 +02:00
|
|
|
}
|