recipes: Rename 'pkghashtag' variable to 'pkgcategory'
[dragora.git] / recipes / x-libs / libnotify / recipe
blob62d1b1b70ae023aad1d7c28cd8e605c4ecdcd433
1 # Build recipe for libnotify.
3 # Copyright (C) 2018-2019 Matias Fonzo, <selk@dragora.org>.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 #    http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 program=libnotify
18 version=0.7.8
19 release=1
21 # Define a category for the output of the package name
22 pkgcategory=x-libs
24 tarname=${program}-${version}.tar.xz
26 # Remote source(s)
27 fetch="http://ftp.gnome.org/pub/gnome/sources/libnotify/${version%.*}/$tarname"
29 description="
30 A notification library to send desktop notifications.
32 The libnotify library is used to send desktop notifications to
33 a notification daemon, as defined in the Desktop Notifications
34 specification.  These notifications can be used to inform the
35 user about an event or display some form of information without
36 getting in the user's way.
39 homepage=http://www.gnome.org
40 license=LGPLv2.1
42 docs="AUTHORS ChangeLog COPYING NEWS README SPECIFICATION"
43 docsdir="${docdir}/${program}-${version}"
45 build()
47     set -e
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     mkdir -p build
57     cd build
59     CFLAGS="$QICFLAGS" LDFLAGS="$QILDFLAGS" \
60     meson setup $configure_args \
61      --libdir /usr/lib${libSuffix} \
62      --buildtype=release \
63      --strip \
64      -Dgtk_doc=false \
65      ..
67     ninja
68     DESTDIR="$destdir" ninja install
70     cd ..
72     # Compress and link man pages (if needed)
73     if test -d "${destdir}/$mandir"
74     then
75         (
76             cd "${destdir}/$mandir"
77             find . -type f -exec lzip -9 '{}' +
78             find . -type l | while read -r file
79             do
80                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
81                 rm -- "$file"
82             done
83         )
84     fi
86     # Copy documentation
87     mkdir -p "${destdir}${docsdir}"
88     cp -p $docs "${destdir}${docsdir}"