recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tde / avahi-tqt / recipe
blob8828c551870a8eb571b8d2ab5da4efb770097c68
1 # Build recipe for avahi-tqt.
3 # Copyright (c) 2020-2021 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=avahi-tqt-trinity
21 pkgname=avahi-tqt
22 version=14.0.11
23 release=1
25 # Define a category for the output of the package name
26 pkgcategory=tde
28 tarname=${program}-${version}.tar.xz
30 # Remote source(s)
31 fetch=https://mirror.ppa.trinitydesktop.org/trinity/releases/R${version}/main/dependencies/$tarname
33 description="
36 homepage=https://www.trinitydesktop.org/
37 license=
39 # Source documentation
40 docs="AUTHORS COPYING ChangeLog NEWS README"
41 docsdir="${docdir}/${pkgname}-${version}"
43 build()
45     unpack "${tardir}/$tarname"
47     cd "$srcdir"
49     # Set sane permissions
50     chmod -R u+w,go-w,a+rX-s .
52     rm -rf BUILD
53     mkdir BUILD
54     cd BUILD
56     cmake \
57      -DCMAKE_CXX_FLAGS_RELEASE:STRING="$QICXXFLAGS"   \
58      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS"  \
59      -DCMAKE_INSTALL_PREFIX=/opt/trinity              \
60      -DLIB_SUFFIX=${libSuffix}                        \
61      -DCMAKE_VERBOSE_MAKEFILE=ON                      \
62      -DCMAKE_BUILD_TYPE=Release                       \
63      -DCMAKE_SKIP_INSTALL_RPATH=YES                   \
64      -DWITH_ALL_OPTIONS=ON                            \
65      -G Ninja ..
67     ninja -j${jobs}
68     DESTDIR="$destdir" ninja -j${jobs} install
70     # Compress and link man pages (if needed)
71     if test -d "${destdir}/$mandir"
72     then
73         (
74             cd "${destdir}/$mandir"
75             find . -type f -exec lzip -9 {} +
76             find . -type l | while read -r file
77             do
78                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
79                 rm -- "$file"
80             done
81         )
82     fi
84     cd ..
86     # Copy documentation
87 #    mkdir -p "${destdir}/$docsdir"
88 #    cp -p $docs "${destdir}/$docsdir"