recipes: Adjust 'docsdir' variable to be consistent with the current recipe format
[dragora.git] / recipes / tde / tqtinterface / recipe
blob1968f5c77befee2c07471343fcea9244c028e432
1 # Build recipe for tqtinterface.
3 # Copyright (c) 2020-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=tqtinterface
21 version=20220503_33d1412
22 release=1
24 # Define a category for the output of the package name
25 pkgcategory=tde
27 tarname=${program}-${version}.tar.lz
29 # Remote source(s)
30 fetch="
31  https://dragora.mirror.garr.it/current/sources/$tarname
32  rsync://rsync.dragora.org/current/sources/$tarname
35 description="
36 The Trinity Qt Interface.
38 This package includes libraries that abstract the underlying Qt system
39 from the actual Trinity code, allowing easy, complete upgrades to new
40 versions of Qt.
42 It also contains various functions that have been removed from newer
43 versions of Qt, but are completely portable and isolated from other APIs
44 such as Xorg.  This allows the Trinity project to efficiently perform
45 certain operations that are infeasible or unneccessarily difficult when
46 using pure Qt4 or above.
49 homepage=https://www.trinitydesktop.org/
50 license=GPLv2+
52 # Source documentation
53 docs="AUTHORS COPYING README qtinterface/TODO"
54 docsdir="${docdir}/${program}-${version}"
56 build()
58     unpack "${tardir}/$tarname"
60     cd "$srcdir"
62     # Set sane permissions
63     chmod -R u+w,go-w,a+rX-s .
65     rm -rf BUILD
66     mkdir BUILD
67     cd BUILD
69     cmake \
70      -DCMAKE_EXPORT_COMPILE_COMMANDS=ON                     \
71      -DCMAKE_BUILD_TYPE=RelWithDebInfo                      \
72      -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$QICXXFLAGS"  \
73      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$(echo $QILDFLAGS | sed 's/-s//')" \
74      -DCMAKE_INSTALL_PREFIX=/usr                            \
75      -DLIB_SUFFIX=${libSuffix}                              \
76      -DCMAKE_VERBOSE_MAKEFILE=ON                            \
77      -DQT_VERSION=3                                         \
78      -DWITH_QT3=ON                                          \
79      -DWITH_QT4=OFF                                         \
80      -G Ninja ..
82     ninja -j${jobs}
83     DESTDIR="$destdir" ninja -j${jobs} install
85     # Compress and link man pages (if needed)
86     if test -d "${destdir}/$mandir"
87     then
88         (
89             cd "${destdir}/$mandir"
90             find . -type f -exec lzip -9 {} +
91             find . -type l | while read -r file
92             do
93                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
94                 rm -- "$file"
95             done
96         )
97     fi
99     cd ..
101     # Copy documentation
102     mkdir -p "${destdir}/$docsdir"
103     cp -p $docs "${destdir}/$docsdir"