From 66c326b6d65388e9f1003715ad9675505f01f9d2 Mon Sep 17 00:00:00 2001 From: davidovski Date: Fri, 3 Jun 2022 13:05:13 +0100 Subject: added porting from alpine linux --- repo/libnotify/libnotify.xibuild | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 repo/libnotify/libnotify.xibuild (limited to 'repo/libnotify') diff --git a/repo/libnotify/libnotify.xibuild b/repo/libnotify/libnotify.xibuild new file mode 100644 index 0000000..0bb4cf5 --- /dev/null +++ b/repo/libnotify/libnotify.xibuild @@ -0,0 +1,27 @@ +#!/bin/sh + +NAME="libnotify" +DESC="Desktop notification library" + +MAKEDEPS="meson gdk-pixbuf dbus gtk3 gobject-introspection" + +PKG_VER=0.7.9 +SOURCE="https://download.gnome.org/sources/libnotify/${PKG_VER%.*}/libnotify-$PKG_VER.tar.xz" + +build() { + meson --prefix=/usr \ + -Dtests=true \ + -Dintrospection=enabled \ + -Dgtk_doc=false \ + -Dman=false \ + output + meson compile ${JOBS:+-j ${JOBS}} -C output +} + +check() { + meson test --no-rebuild -v -C output +} + +package() { + DESTDIR="$PKG_DEST" meson install --no-rebuild -C output +} -- cgit v1.2.1