blob: 10c81a5eb5b08d52179b68c62c98f0431affe2f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#!/bin/mkpkg
# description: Library for sending desktop notifications
# url: https://gitlab.gnome.org/GNOME/libnotify
name=libnotify
version=0.8.8
release=1
depends=(gdk-pixbuf glib dbus)
makedeps=(meson ninja)
source=(https://download.gnome.org/sources/libnotify/0.8/$name-$version.tar.xz)
sha256sums=(
"23420ef619dc2cb5aebad613f4823a2fa41c07e5a1d05628d40f6ec4b35bfddd"
)
build() {
cd $name-$version
meson setup build \
--prefix=/usr \
--buildtype=plain \
--wrap-mode=nodownload \
-D b_lto=true \
-D b_pie=true \
-D gtk_doc=false \
-D man=false \
-D introspection=disabled \
-D tests=false \
-D werror=false
meson compile -C build
DESTDIR=$PKG meson install -C build
}
signify() {
untrusted comment: public key
RWTZ9IduCSQ/mL8337TEUinPwT92xFEUpD92hkS7IxcOnzTt9QdpohT3
}
# vim: filetype=sh
|