Reconfigure Trinity options, paths, and other adjustments
[dragora.git] / recipes / tde / tqca-tls / recipe
blob95a9429380eded438a21b05e19ba5b587b99d33a
1 # Build recipe for tqca-tls.
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=tqca-tls-trinity
21 pkgname=tqca-tls
22 version=14.0.9
23 release=2
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="
34 TQCA TLS plugin.
36 This is a plugin to provide SSL/TLS capability to programs that
37 utilize the TQt Cryptographic Architecture (TQCA).
40 homepage=https://www.trinitydesktop.org/
41 license=LGPLv2.1
43 # Source documentation
44 docs="COPYING README"
45 docsdir="${docdir}/${pkgname}-${version}"
47 build()
49     unpack "${tardir}/$tarname"
51     cd "$srcdir"
53     # Set sane permissions
54     chmod -R u+w,go-w,a+rX-s .
56     mkdir BUILD
57     cd BUILD
59     cmake \
60      -DCMAKE_EXPORT_COMPILE_COMMANDS=ON                     \
61      -DCMAKE_BUILD_TYPE=RelWithDebInfo                      \
62      -DCMAKE_C_FLAGS_RELWITHDEBINFO:STRING="$QICFLAGS"      \
63      -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$QICXXFLAGS"  \
64      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$(echo $QILDFLAGS | sed 's/-s//')" \
65      -DCMAKE_INSTALL_PREFIX=/usr                            \
66      -DLIB_SUFFIX=${libSuffix}                              \
67      -DCONFIG_INSTALL_DIR=/etc/trinity                      \
68      -DSYSCONF_INSTALL_DIR=/etc/trinity                     \
69      -DXDG_MENU_INSTALL_DIR=/etc/xdg/menus                  \
70      -DCMAKE_VERBOSE_MAKEFILE=ON                            \
71      -DCMAKE_SKIP_RPATH=OFF                                 \
72      -DWITH_ALL_OPTIONS=ON                                  \
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}"