recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / x-libs / libical / recipe
blobf4f8dc4b1f42377d85759e183d0a799849256b85
1 # Build recipe for libical.
3 # Copyright (c) 2019-2022 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 # Exit immediately on any error
18 set -e
20 program=libical
21 version=3.0.13
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=x-libs
27 tarname=${program}-${version}.tar.gz
29 # Remote source(s)
30 fetch=https://github.com/libical/libical/releases/download/v${version}/$tarname
32 description="
33 Libical is an implementation of the iCalendar protocols.
35 The libical package contains an implementation of the iCalendar
36 protocols and data formats.
39 homepage=https://github.com/libical/libical
40 license="MPLv2.0, LGPLv2.1"
42 # Source documentation
43 docs="AUTHORS COPYING LICENSE* README* ReleaseNotes.txt THANKS TODO"
44 docsdir="${docdir}/${program}-${version}"
46 build()
48     unpack "${tardir}/$tarname"
50     cd "$srcdir"
52     # Set sane permissions
53     chmod -R u+w,go-w,a+rX-s .
55     rm -rf BUILD
56     mkdir BUILD
57     cd BUILD
59     cmake \
60      -DCMAKE_C_FLAGS_RELEASE:STRING="$QICFLAGS"       \
61      -DCMAKE_CXX_FLAGS_RELEASE:STRING="$QICXXFLAGS"   \
62      -DCMAKE_EXE_LINKER_FLAGS:STRING="$QILDFLAGS"     \
63      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS"  \
64      -DCMAKE_INSTALL_PREFIX=/usr                      \
65      -DCMAKE_INSTALL_MANDIR=$mandir                   \
66      -DCMAKE_INSTALL_DOCDIR=$docsdir                  \
67      -DCMAKE_BUILD_TYPE=Release                       \
68      -DCMAKE_VERBOSE_MAKEFILE=ON                      \
69      -DSHARED_ONLY=yes                                \
70      -DICAL_BUILD_DOCS=false                          \
71      -DGOBJECT_INTROSPECTION=true                     \
72      -DICAL_GLIB_VAPI=true                            \
73      -G Ninja ..
75     ninja -j${jobs}
76     DESTDIR="$destdir" ninja -j${jobs} install
78     # Compress and link man pages (if needed)
79     if test -d "${destdir}/$mandir"
80     then
81         (
82             cd "${destdir}/$mandir"
83             find . -type f -exec lzip -9 {} +
84             find . -type l | while read -r file
85             do
86                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
87                 rm -- "$file"
88             done
89         )
90     fi
92     cd ..
94     # Copy documentation
95     mkdir -p "${destdir}/$docsdir"
96     cp -p $docs "${destdir}/$docsdir"