recipes: tde/tqtinterface: added version 14.0.7
[dragora.git] / recipes / tde / tqtinterface / recipe
blobbef2eb8de83889ffcce2717aaa5bf4d602d717d2
1 # Build recipe for jasper.
3 # Copyright (c) 2020 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=tqtinterface-trinity
18 pkgname=tqtinterface
19 version=14.0.7
20 release=1
22 # Set 'outdir' for a nice and well-organized output directory
23 outdir="${outdir}/${arch}/tde"
25 tarname=${program}-${version}.tar.xz
27 # Remote source(s)
28 fetch=http://mirror.ppa.trinitydesktop.org/trinity/releases/R${version}/main/dependencies/$tarname
30 description="
31 The Trinity Qt Interface.
33 This package includes libraries that abstract the underlying Qt system
34 from the actual Trinity code, allowing easy, complete upgrades to new
35 versions of Qt.
37 It also contains various functions that have been removed from newer
38 versions of Qt, but are completely portable and isolated from other APIs
39 such as Xorg.  This allows the Trinity project to efficiently perform
40 certain operations that are infeasible or unneccessarily difficult when
41 using pure Qt4 or above.
44 homepage=http://www.trinitydesktop.org/
45 license=GPLv2+
47 # Source documentation
48 docs="AUTHORS COPYING README qtinterface/TODO"
49 docsdir="${docdir}/${pkgname}-${version}"
51 build()
53     set -e
55     unpack "${tardir}/$tarname"
57     cd "$srcdir"
59     # Set sane permissions
60     chmod -R u+w,go-w,a+rX-s .
62     mkdir BUILD
63     cd BUILD
65     cmake \
66      -DCMAKE_CXX_FLAGS:STRING="$QICXXFLAGS"           \
67      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$QILDFLAGS"  \
68      -DCMAKE_INSTALL_PREFIX=/usr                      \
69      -DLIB_SUFFIX=${libSuffix}                        \
70      -DCMAKE_BUILD_TYPE=Release                       \
71      -DCMAKE_SKIP_INSTALL_RPATH=YES                   \
72      -DUSE_QT3=ON                                     \
73      -DQT_PREFIX_DIR=/opt/trinity                     \
74      -DQT_INCLUDE_DIR=/opt/tqt3/include               \
75      -DQT_LIBRARY_DIR=/opt/tqt3/lib                   \
76      -DQT_BINARY_DIR=/opt/tqt3/bin                    \
77      ..
79     make -j${jobs}
80     make -j${jobs} DESTDIR="$destdir" install
82     # Compress and link man pages (if needed)
83     if test -d "${destdir}/$mandir"
84     then
85         (
86             cd "${destdir}/$mandir"
87             find . -type f -exec lzip -9 '{}' +
88             find . -type l | while read -r file
89             do
90                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
91                 rm -- "$file"
92             done
93         )
94     fi
96     cd ..
98     # Copy documentation
99     mkdir -p "${destdir}${docsdir}"
100     cp -p $docs "${destdir}${docsdir}"