Reconfigure Trinity options, paths, and other adjustments
[dragora.git] / recipes / tde / libart / recipe
blob70512a8c823200548d2f0b3f334867337484bc74
1 # Build recipe for libart-gpl.
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=libart-lgpl-trinity
21 pkgname=libart
22 version=14.0.9
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="
34 LGPL version of the libart library.
36 This is the LGPL'd component of libart.  All functions needed for
37 running the Gnome canvas, and for printing support, will be going in
38 here.  The GPL'd component will be getting various enhanced functions
39 for specific applications.
42 homepage=https://www.trinitydesktop.org/
43 license=LGPLv2+
45 # Source documentation
46 docs="AUTHORS COPYING ChangeLog NEWS README"
47 docsdir="${docdir}/${program}-${version}"
49 build()
51     unpack "${tardir}/$tarname"
53     cd "$srcdir"
55     # Set sane permissions
56     chmod -R u+w,go-w,a+rX-s .
58     mkdir BUILD
59     cd BUILD
61     cmake \
62      -DCMAKE_EXPORT_COMPILE_COMMANDS=ON                     \
63      -DCMAKE_BUILD_TYPE=RelWithDebInfo                      \
64      -DCMAKE_CXX_FLAGS_RELWITHDEBINFO:STRING="$QICXXFLAGS"  \
65      -DCMAKE_CXX_FLAGS:STRING="$QICXXFLAGS"  \
66      -DCMAKE_SHARED_LINKER_FLAGS:STRING="$(echo $QILDFLAGS | sed 's/-s//')" \
67      -DCMAKE_INSTALL_PREFIX=/usr                            \
68      -DLIB_SUFFIX=${libSuffix}                              \
69      -DCMAKE_VERBOSE_MAKEFILE=ON                            \
70      -DCMAKE_SKIP_RPATH=OFF                                 \
71      -DWITH_ALL_OPTIONS=ON                                  \
72      -G Ninja ..
74     ninja -j${jobs}
75     DESTDIR="$destdir" ninja -j${jobs} install
77     # Compress and link man pages (if needed)
78     if test -d "${destdir}/$mandir"
79     then
80         (
81             cd "${destdir}/$mandir"
82             find . -type f -exec lzip -9 {} +
83             find . -type l | while read -r file
84             do
85                 ln -sf "$(readlink -- "$file").lz" "${file}.lz"
86                 rm -- "$file"
87             done
88         )
89     fi
91     cd ..
93     # Copy documentation
94     mkdir -p "${destdir}${docsdir}"
95     cp -p $docs "${destdir}${docsdir}"